diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index 890534b..48bcd22 100644
--- a/src/components/Layout.tsx
+++ b/src/components/Layout.tsx
@@ -7,84 +7,48 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
- {
- "name": "About",
- "href": "#about"
- },
- {
- "name": "Menu",
- "href": "#menu"
- },
- {
- "name": "Testimonials",
- "href": "#testimonials"
- },
- {
- "name": "Hero",
- "href": "#hero"
- },
- {
- "name": "Stats",
- "href": "#stats"
- },
- {
- "name": "Team",
- "href": "#team"
- },
- {
- "name": "Faq",
- "href": "#faq"
- }
-];
+ { name: "About", href: "#about" },
+ { name: "Menu", href: "#menu" },
+ { name: "Testimonials", href: "#testimonials" },
+ { name: "Hero", href: "#hero" },
+ { name: "Stats", href: "#stats" },
+ { name: "Team", href: "#team" },
+ { name: "Faq", href: "#faq" }
+ ];
return (
+ logo="Mikla Fries"
+ ctaButton={{ text: "Order Now", href: "#contact" }}
+ navItems={navItems}
+ />
+ title: "Legal", items: [
+ { label: "Privacy", href: "#" },
+ { label: "Terms", href: "#" }
+ ]
+ }
+ ]}
+ copyright="© 2024 Mikla Fries. All rights reserved."
+ links={[{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }]}
+ />
);
diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx
index e09f419..4cac2c5 100644
--- a/src/pages/HomePage.tsx
+++ b/src/pages/HomePage.tsx
@@ -12,226 +12,121 @@ import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function HomePage() {
return (
<>
-
-
+
+
-
-
+ avatarsSrc={["http://img.b2bpic.net/free-photo/woman-smiling_1187-3196.jpg", "http://img.b2bpic.net/free-photo/beautiful-woman-smiling_93675-133804.jpg", "http://img.b2bpic.net/free-photo/person-indian-origin-having-fun_23-2150285298.jpg"]}
+ avatarText="Join 5,000+ fry lovers"
+ title="Artisanal Fries, Perfected."
+ description="Experience the crunch of handcrafted, double-fried golden potatoes. Simple, local, and incredibly addictive."
+ primaryButton={{ text: "See Menu", href: "#menu" }}
+ secondaryButton={{ text: "Order Now", href: "#contact" }}
+ names={["Alex", "Jordan", "Sam"]}
+ imageSrc="http://img.b2bpic.net/free-photo/flat-lay-delicious-corn-dogs-arrangement_23-2149455096.jpg"
+ />
+
+
-
-
+
+ title="Our Secret is Simple: Good Potatoes, High Heat, and Love."
+ primaryButton={{ text: "Learn Our Story", href: "#" }}
+ />
+
+
-
-
-
+
+
-
-
+ tag="Our Impact"
+ title="Crunching the Numbers"
+ description="We celebrate every fry served."
+ metrics={[
+ { icon: "Flame", title: "Potatoes Fried", value: "2.5M+" },
+ { icon: "Smile", title: "Happy Customers", value: "150k+" },
+ { icon: "MapPin", title: "Locations Served", value: "12" }
+ ]}
+ />
+
+
-
-
+
+
-
-
+ tag="Meet The Makers"
+ title="The Fry Enthusiasts"
+ description="Meet the passionate team behind the crunch."
+ members={[
+ { name: "Mikkel", role: "Head Chef", imageSrc: "http://img.b2bpic.net/free-photo/smiling-man-showing-thumb-up-sign_23-2147863554.jpg" },
+ { name: "Sarah", role: "Fry Master", imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-french-fries-with-seasonings-getting-eat-by-female-dark-surface_179666-34415.jpg" },
+ { name: "David", role: "Operations", imageSrc: "http://img.b2bpic.net/free-photo/standing-male-restaurant-hotel-equipment_1134-1294.jpg" }
+ ]}
+ />
+
+
-
-
+
+
-
-
+ tag="Raves"
+ title="What They're Saying"
+ description="See why our customers keep coming back."
+ testimonials={[
+ { name: "Emma L.", role: "Foodie", quote: "Best fries I have ever tasted. Period.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-middle-aged-male-holding-potato-cips-soda-blue-surface_140725-31537.jpg" },
+ { name: "Marcus R.", role: "Local", quote: "The Truffle Parmesan is addictive.", imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-woman-hairdresser-apron-looking-front-showing-ok-sign-smiling-standing-green-wall_141793-64876.jpg" },
+ { name: "Jasmine K.", role: "Student", quote: "My weekly study treat!", imageSrc: "http://img.b2bpic.net/free-photo/front-view-cute-girl-looking-away_23-2148436134.jpg" },
+ { name: "Peter B.", role: "Chef", quote: "Incredible texture and consistent quality.", imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-indoor-portrait-young-brunette-woman-posing-city-cafeteria-enjoy-her-tasty-hot-morning-coffee_291049-795.jpg" },
+ { name: "Anna S.", role: "Regular", quote: "Friendly service and hot crispy fries.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-asian-woman-showing-both-thumbs-up_1262-16496.jpg" }
+ ]}
+ />
+
+
-
-
+
+
-
-
+ tag="Support"
+ title="Fry FAQs"
+ description="Common questions from fry fans."
+ items={[
+ { question: "Are your potatoes fresh?", answer: "Yes, we source from local farms daily." },
+ { question: "Do you offer delivery?", answer: "Absolutely, check your local app." },
+ { question: "Any vegan options?", answer: "All our original fries are vegan-friendly!" }
+ ]}
+ />
+
+
-
>
);
}