diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 85a3656..70e14b1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -9,7 +9,8 @@ const poppins = Poppins({ }); export const metadata: Metadata = { - title: "Fool's Gold Social Bar | Premium Cocktails & Social Venue in Stellenbosch", description: "Experience Stellenbosch's hidden gem for craft cocktails, gourmet food, and vibrant atmosphere. Open until 3 AM daily. Reserve your table today."}; + title: "Fool's Gold Social Bar | Premium Cocktails & Social Venue in Stellenbosch", description: "Experience Stellenbosch's hidden gem for craft cocktails, gourmet food, and vibrant atmosphere. Open until 3 AM daily. Reserve your table today." +}; export default function RootLayout({ children, @@ -17,7 +18,7 @@ export default function RootLayout({ children: React.ReactNode; }) { return ( - +
{children} diff --git a/src/app/page.tsx b/src/app/page.tsx index 17c42ea..e053661 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,7 +2,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; -import HeroBillboardDashboard from '@/components/sections/hero/HeroBillboardDashboard'; +import HeroSplit from '@/components/sections/hero/HeroSplit'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import FeatureCardTen from '@/components/sections/feature/FeatureCardTen'; @@ -41,7 +41,7 @@ export default function LandingPage() {