Update src/app/page.tsx

This commit is contained in:
2026-04-08 15:00:28 +00:00
parent f19d6b5d01
commit 58faf0a67a

View File

@@ -1,5 +1,5 @@
'use client';
import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
@@ -8,99 +8,35 @@ import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterSimple from '@/components/sections/footer/FooterSimple';
const navItems = [
{ name: "Home", id: "/" }
];
import Link from "next/link";
export default function Page() {
const navItems = [{ name: "Home", id: "/" }];
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ThemeProvider>
<div id="nav" data-section="nav">
<NavbarStyleCentered navItems={navItems} />
<NavbarStyleCentered navItems={navItems} brandName=".AL FARO" />
</div>
<div id="hero" data-section="hero">
<HeroLogoBillboard
logoText="Webild"
description="Your vision, our expertise. Building digital excellence together."
buttons={[{ text: "Get Started" }]}
background={{ variant: "plain" }}
/>
<HeroLogoBillboard logoText=".AL FARO" description="Pizza al Taglio" buttons={[{ text: "Order Now" }]} />
</div>
<div id="social" data-section="social">
<SocialProofOne
names={["Acme Corp", "Global Tech", "Innovate Inc", "NextGen"]}
title="Trusted by industry leaders"
description="We power innovation for the world's most ambitious teams."
textboxLayout="default"
useInvertedBackground={false}
/>
<SocialProofOne names={["Gambero Rosso", "TripAdvisor"]} title="As Featured In" textboxLayout="default" />
</div>
<div id="prodotto" data-section="prodotto">
<MediaAbout
title="About Our Approach"
description="We focus on delivering high-quality, scalable solutions tailored to your unique needs."
useInvertedBackground={false}
/>
<MediaAbout title="Our Story" description="Crafting authentic pizza experience with premium ingredients." />
</div>
<div id="varieta" data-section="varieta">
<ProductCardTwo
title="Our Solutions"
description="Explore our suite of premium digital tools."
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
products={[
{ id: "1", brand: "Web", name: "Basic Suite", price: "$99", rating: 4.5, reviewCount: "10", imageSrc: "https://images.unsplash.com/photo-1593642532400-2682810df593" },
{ id: "2", brand: "Web", name: "Pro Suite", price: "$199", rating: 4.8, reviewCount: "25", imageSrc: "https://images.unsplash.com/photo-1593642532400-2682810df593" },
{ id: "3", brand: "Web", name: "Enterprise", price: "$499", rating: 5.0, reviewCount: "50", imageSrc: "https://images.unsplash.com/photo-1593642532400-2682810df593" }
]}
/>
<ProductCardTwo title="Our Menu" description="Discover our artisanal pizza selection." gridVariant="three-columns-all-equal-width" animationType="slide-up" textboxLayout="default" />
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardOne
title="Client Success Stories"
description="Don't just take our word for it."
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
{ id: "1", name: "Alice", role: "CEO", company: "TechCorp", rating: 5 },
{ id: "2", name: "Bob", role: "CTO", company: "DataFlow", rating: 5 },
{ id: "3", name: "Charlie", role: "Founder", company: "StartUp", rating: 5 }
]}
/>
<TestimonialCardOne title="Customer Stories" gridVariant="uniform-all-items-equal" animationType="slide-up" textboxLayout="default" testimonials={[]} />
</div>
<div id="contact" data-section="contact">
<ContactSplitForm
title="Let's Connect"
description="Reach out to us today to start your next project."
useInvertedBackground={false}
inputs={[
{ name: "name", type: "text", placeholder: "Full Name" },
{ name: "email", type: "email", placeholder: "Email Address" }
]}
/>
<ContactSplitForm title="Get in Touch" description="We would love to hear from you." inputs={[{ name: "name", type: "text", placeholder: "Your Name" }, { name: "email", type: "email", placeholder: "Your Email" }]} />
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[{ title: "Company", items: [{ label: "About" }, { label: "Contact" }] }]}
bottomLeftText="© 2024 Webild Inc."
bottomRightText="All rights reserved."
/>
<FooterSimple columns={[]} bottomLeftText=".AL FARO" bottomRightText="© 2024" />
</div>
</ThemeProvider>
);