diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 063592a..9497eba 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -11,30 +11,27 @@ export default function BlogPage() { return ( @@ -60,4 +57,4 @@ export default function BlogPage() { ); -} \ No newline at end of file +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fa72688..3a72a01 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,15 +1,20 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; +import { Cormorant_Garamond, Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; +const cormorantGaramond = Cormorant_Garamond({ + variable: "--font-cormorant-garamond", subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Bob's Burgers | Cozy Burgers & Family Favorites", description: "Discover delicious handcrafted burgers at Bob's Burgers. Experience cozy atmosphere, fresh ingredients, and family favorites in a warm, inviting setting.", keywords: ["burgers", "family restaurant", "cozy dining", "handcrafted burgers", "local cuisine", "comfort food", "bob's burgers"] + title: "Bob's Burgers | Premium Burgers & Comfort Food", description: "Experience Bob's Burgers - where reliable comfort food meets surprisingly good taste. Fresh ingredients, friendly service, and fast pickup. Make it a habit, it's pretty darn good.", keywords: ["burgers", "restaurant", "comfort food", "fresh ingredients", "friendly service", "fast pickup", "locally sourced"] }; export default function RootLayout({ @@ -21,7 +26,7 @@ export default function RootLayout({ {children} @@ -1396,4 +1401,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 819c763..77b5391 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,34 +9,32 @@ import ProductCardThree from '@/components/sections/product/ProductCardThree'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FooterBase from '@/components/sections/footer/FooterBase'; -import { Sparkles, CheckCircle, Heart, ChefHat, Leaf, Users, Star } from "lucide-react"; +import { Sparkles, CheckCircle, Heart, ChefHat, Leaf, Users, Star, MapPin, Clock, Phone } from "lucide-react"; export default function LandingPage() { return (