diff --git a/src/app/bagels/page.tsx b/src/app/bagels/page.tsx index 0a42201..eee354f 100644 --- a/src/app/bagels/page.tsx +++ b/src/app/bagels/page.tsx @@ -1,4 +1,4 @@ -"use client" +"use client"; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 51a4b3a..04773f9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -7,7 +7,8 @@ import "./styles/base.css"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Artisan Coffee Co.", description: "Premium artisan coffee, freshly roasted and expertly prepared"}; + title: "Artisan Coffee Co.", description: "Premium artisan coffee, freshly roasted and expertly prepared" +}; export default function RootLayout({ children, diff --git a/src/app/page.tsx b/src/app/page.tsx index d11978f..7dfa155 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,4 +1,4 @@ -"use client" +"use client"; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import HeroSplit from '@/components/sections/hero/HeroSplit';