1 Commits

Author SHA1 Message Date
e68cfc5e68 Update src/app/layout.tsx 2026-03-04 01:24:56 +00:00
2 changed files with 2 additions and 11 deletions

View File

@@ -9,7 +9,8 @@ const inter = Inter({
});
export const metadata: Metadata = {
title: "Lotus Food Market", description: "Your neighborhood market with flavors from around the world"};
title: "Lotus Food Market", description: "Your neighborhood market with flavors from around the world"
};
export default function RootLayout({
children,
@@ -18,10 +19,6 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<head>
<meta charSet="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body className={inter.variable}>{children}
<script
dangerouslySetInnerHTML={{

View File

@@ -1,6 +1,5 @@
"use client";
import { useEffect } from "react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import HeroCentered from "@/components/sections/hero/HeroCentered";
@@ -13,11 +12,6 @@ import FooterSimple from "@/components/sections/footer/FooterSimple";
import { Heart, Leaf, Star, MapPin } from "lucide-react";
export default function LandingPage() {
useEffect(() => {
// Fix hydration mismatch by ensuring consistent rendering
// Remove any SSR-specific logic that might differ between server and client
}, []);
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"