Skip to content

Commit 1cfc3a5

Browse files
authored
🧹 remove unnecessary template literals in Banner components (#278)
1 parent 986bf39 commit 1cfc3a5

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/showcase/blocks/banner/CollapsibleBanner.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export default function CollapsibleBanner() {
3434
>
3535
<div className="flex w-full items-center gap-x-6 bg-red-500 px-6 py-3 sm:px-3.5 sm:before:flex-1">
3636
<div className="flex items-center text-sm font-medium leading-6 text-white">
37-
<p>{`Get 50+ Premium Components for your next project on SyntaxUI`}</p>
37+
<p>Get 50+ Premium Components for your next project on SyntaxUI</p>
3838

3939
<a
4040
href="#"

src/showcase/blocks/banner/SimpleBanner.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const SimpleBanner = () => {
99
>
1010
<div className="flex w-full items-center justify-center gap-x-6 bg-red-500 px-6 py-3 sm:px-3.5">
1111
<div className="flex items-center text-sm font-medium leading-6 text-white">
12-
<p>{`Get 50+ Premium Components for your next project on SyntaxUI`}</p>
12+
<p>Get 50+ Premium Components for your next project on SyntaxUI</p>
1313
</div>
1414
</div>
1515
</div>

0 commit comments

Comments
 (0)