Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e68cfc5e68 |
@@ -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={{
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user