diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index d3c127f..a610093 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -45,7 +45,7 @@ export default function BlogPage() { ) : ( )} @@ -92,4 +92,4 @@ export default function BlogPage() { ); -} +} \ No newline at end of file diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d8be7fc..903f980 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -10,9 +10,11 @@ const nunito = Nunito({ export const metadata: Metadata = { title: "BrewCraft | Premium Specialty Coffee Roasted Fresh", description: "Discover artisan-crafted specialty coffee roasted in-house. Experience single-origin espresso, smooth cappuccino, and cold brew concentrate. Visit BrewCraft today.", keywords: "specialty coffee, artisan roasted, espresso, cappuccino, cold brew, premium coffee", openGraph: { - title: "BrewCraft | Premium Specialty Coffee", description: "Discover artisan-crafted specialty coffee roasted in-house.", url: "https://brewcraft.com", siteName: "BrewCraft", type: "website"}, + title: "BrewCraft | Premium Specialty Coffee", description: "Discover artisan-crafted specialty coffee roasted in-house.", url: "https://brewcraft.com", siteName: "BrewCraft", type: "website" + }, twitter: { - card: "summary_large_image", title: "BrewCraft | Premium Specialty Coffee", description: "Discover artisan-crafted specialty coffee roasted in-house."}, + card: "summary_large_image", title: "BrewCraft | Premium Specialty Coffee", description: "Discover artisan-crafted specialty coffee roasted in-house." + }, }; export default function RootLayout({ @@ -1396,4 +1398,4 @@ export default function RootLayout({ ); -} +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 3a7cfca..8b2d795 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -155,9 +155,9 @@ export default function Home() { } ]} kpiItems={[ - { id: "rating", value: "4.9/5" }, - { id: "repeat", value: "87%" }, - { id: "satisfaction", value: "98%" } + { value: "4.9/5", description: "Average Rating" }, + { value: "87%", description: "Repeat Customers" }, + { value: "98%", description: "Satisfaction Rate" } ]} /> @@ -243,4 +243,4 @@ export default function Home() { ); -} +} \ No newline at end of file diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index c6c393b..7e05d56 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -58,7 +58,7 @@ export default function ProductDetailPage({ params }: PageProps) { ) : product ? ( ) : ( @@ -111,4 +111,4 @@ export default function ProductDetailPage({ params }: PageProps) { ); -} +} \ No newline at end of file diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 9847c69..1de0337 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -48,6 +48,7 @@ export default function ShopPage() { ) : ( )} @@ -95,4 +96,4 @@ export default function ShopPage() { ); -} +} \ No newline at end of file