15 Commits

Author SHA1 Message Date
6ca96a1f37 Update src/app/page.tsx 2026-04-05 23:00:03 +00:00
51d1dae69a Update src/app/page.tsx 2026-04-05 22:59:30 +00:00
1e7d782e22 Update src/app/page.tsx 2026-04-05 22:58:59 +00:00
ccecb9a913 Update src/app/layout.tsx 2026-04-05 22:58:59 +00:00
6bd3933d93 Update src/app/layout.tsx 2026-04-05 22:56:27 +00:00
59755f2163 Update src/app/page.tsx 2026-04-05 22:55:58 +00:00
7d22f44eac Update src/app/page.tsx 2026-04-05 22:44:55 +00:00
bcbb4211d1 Merge version_1 into main
Merge version_1 into main
2026-04-05 22:26:38 +00:00
760c98fdaf Merge version_1 into main
Merge version_1 into main
2026-04-05 22:26:10 +00:00
63d7752c5a Merge version_1 into main
Merge version_1 into main
2026-04-05 22:23:22 +00:00
9206986442 Merge version_1 into main
Merge version_1 into main
2026-04-05 22:22:38 +00:00
1f4fd340c3 Merge version_1 into main
Merge version_1 into main
2026-04-05 22:21:59 +00:00
f2e4f32929 Merge version_1 into main
Merge version_1 into main
2026-04-05 22:21:21 +00:00
5dfe6d4d43 Merge version_1 into main
Merge version_1 into main
2026-04-05 22:20:43 +00:00
879431c1ab Merge version_1 into main
Merge version_1 into main
2026-04-05 22:19:48 +00:00
2 changed files with 84 additions and 13 deletions

View File

@@ -11,8 +11,8 @@ import { Libre_Baskerville, Inter } from "next/font/google";
export const metadata: Metadata = { export const metadata: Metadata = {
title: 'Innovation Driven Website', title: 'Welcome to Our Platform',
description: 'Explore our signature products and expert services.', description: 'Experience the future of digital solutions today.',
openGraph: { openGraph: {
"title": "L.B.'s Family Restaurant | Where Every Table Feels Like Home", "title": "L.B.'s Family Restaurant | Where Every Table Feels Like Home",
"description": "Thompson's staple diner since day one. Quality food, hearty portions, and community spirit.", "description": "Thompson's staple diner since day one. Quality food, hearty portions, and community spirit.",

View File

@@ -1,4 +1,4 @@
"use client"; 'use client';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel'; import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel';
@@ -10,8 +10,9 @@ import TeamCardOne from '@/components/sections/team/TeamCardOne';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterSimple from '@/components/sections/footer/FooterSimple'; import FooterSimple from '@/components/sections/footer/FooterSimple';
const navItems = [{ name: "Home", id: "/" }];
export default function Page() { export default function Page() {
const navItems = [{ name: "Home", id: "/" }];
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="text-stagger" defaultButtonVariant="text-stagger"
@@ -26,31 +27,101 @@ export default function Page() {
headingFontWeight="normal" headingFontWeight="normal"
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleFullscreen navItems={navItems} /> <NavbarStyleFullscreen
navItems={navItems}
logoSrc="/logo.svg"
logoAlt="Logo"
/>
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroSplitDoubleCarousel title="Experience Innovation" description="Redefining excellence in every detail." background={{ variant: "plain" }} leftCarouselItems={[]} rightCarouselItems={[]} /> <HeroSplitDoubleCarousel
title="Welcome to Our Platform"
description="Experience the future of digital solutions today."
background={{ variant: "glowing-orb" }}
leftCarouselItems={[{ imageSrc: "/placeholder.jpg", imageAlt: "Hero" }]}
rightCarouselItems={[{ imageSrc: "/placeholder.jpg", imageAlt: "Hero" }]}
/>
</div> </div>
<div id="about" data-section="about"> <div id="about" data-section="about">
<TextSplitAbout title="About Us" description={["We are a team dedicated to excellence."]} useInvertedBackground={false} /> <TextSplitAbout
title="About Us"
description={["We are a team dedicated to excellence.", "Building the future with passion."]}
useInvertedBackground={false}
/>
</div> </div>
<div id="menu" data-section="menu"> <div id="menu" data-section="menu">
<FeatureCardNineteen title="Our Features" description="Explore what makes us unique." features={[{ tag: "New", title: "Feature 1", subtitle: "Innovation", description: "High quality service." }, { tag: "Update", title: "Feature 2", subtitle: "Advanced", description: "Built for performance." }]} textboxLayout="default" useInvertedBackground={false} /> <FeatureCardNineteen
title="Our Services"
description="Comprehensive services tailored to your needs."
textboxLayout="split"
useInvertedBackground={false}
features={[
{ tag: "Fast", title: "Service 1", subtitle: "Subtitle", description: "High-speed performance", imageSrc: "/placeholder.jpg" },
{ tag: "Secure", title: "Service 2", subtitle: "Subtitle", description: "Enterprise-grade security", imageSrc: "/placeholder.jpg" }
]}
/>
</div> </div>
<div id="signatures" data-section="signatures"> <div id="signatures" data-section="signatures">
<ProductCardThree title="Signatures" description="Exclusive collections." gridVariant="three-columns-all-equal-width" animationType="slide-up" textboxLayout="default" products={[{ id: "1", name: "Signature 1", price: "$99", imageSrc: "/images/product1.jpg" }, { id: "2", name: "Signature 2", price: "$149", imageSrc: "/images/product2.jpg" }, { id: "3", name: "Signature 3", price: "$199", imageSrc: "/images/product3.jpg" }]} useInvertedBackground={false} /> <ProductCardThree
title="Signatures"
description="Unique products curated for you."
textboxLayout="default"
gridVariant="asymmetric-60-wide-40-narrow"
animationType="blur-reveal"
useInvertedBackground={false}
products={[
{ id: "p1", name: "Signature 1", price: "$10", imageSrc: "/placeholder.jpg" },
{ id: "p2", name: "Signature 2", price: "$20", imageSrc: "/placeholder.jpg" },
{ id: "p3", name: "Signature 3", price: "$30", imageSrc: "/placeholder.jpg" }
]}
/>
</div> </div>
<div id="reviews" data-section="reviews"> <div id="reviews" data-section="reviews">
<TestimonialCardOne title="Client Reviews" description="What they say about us." gridVariant="three-columns-all-equal-width" animationType="slide-up" textboxLayout="default" testimonials={[{ id: "1", name: "John Doe", role: "CEO", company: "Tech Corp", rating: 5 }, { id: "2", name: "Jane Smith", role: "CTO", company: "Design Inc", rating: 5 }]} useInvertedBackground={false} /> <TestimonialCardOne
title="Testimonials"
description="What our clients say about us."
textboxLayout="default"
gridVariant="uniform-all-items-equal"
animationType="blur-reveal"
useInvertedBackground={false}
testimonials={[
{ id: "t1", name: "Client 1", role: "CEO", company: "Comp A", rating: 5 },
{ id: "t2", name: "Client 2", role: "CTO", company: "Comp B", rating: 5 }
]}
/>
</div> </div>
<div id="atmosphere" data-section="atmosphere"> <div id="atmosphere" data-section="atmosphere">
<TeamCardOne title="Our Atmosphere" description="Meet the people behind the magic." gridVariant="three-columns-all-equal-width" animationType="slide-up" textboxLayout="default" members={[{ id: "1", name: "Alice", role: "Lead Designer" }, { id: "2", name: "Bob", role: "Engineer" }]} useInvertedBackground={false} /> <TeamCardOne
title="Our Team"
description="Meet the experts behind our success."
textboxLayout="default"
gridVariant="uniform-all-items-equal"
animationType="blur-reveal"
useInvertedBackground={false}
members={[
{ id: "m1", name: "John", role: "Founder", imageSrc: "/placeholder.jpg" },
{ id: "m2", name: "Jane", role: "Engineer", imageSrc: "/placeholder.jpg" }
]}
/>
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactSplitForm title="Contact Us" description="Get in touch with our team today." inputs={[{ name: "name", type: "text", placeholder: "Name", required: true }, { name: "email", type: "email", placeholder: "Email", required: true }]} useInvertedBackground={false} /> <ContactSplitForm
title="Contact Us"
description="Get in touch with our team."
useInvertedBackground={false}
inputs={[
{ name: "name", type: "text", placeholder: "Name", required: true },
{ name: "email", type: "email", placeholder: "Email", required: true }
]}
buttonText="Submit"
/>
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterSimple columns={[{ title: "Links", items: [{ label: "Home", href: "/" }] }]} bottomLeftText="© 2024" bottomRightText="All Rights Reserved" /> <FooterSimple
bottomLeftText="© 2024 Webild"
bottomRightText="All Rights Reserved"
columns={[{ title: "Links", items: [{ label: "Home", href: "/" }] }]}
/>
</div> </div>
</ThemeProvider> </ThemeProvider>
); );