Merge version_1 into main #13
@@ -11,8 +11,8 @@ import { DM_Serif_Display, Inter } from "next/font/google";
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Webild - Innovation at Scale',
|
||||
description: 'Empowering businesses with cutting-edge technology solutions.',
|
||||
title: 'Home | Webild',
|
||||
description: 'Innovation at the speed of light.',
|
||||
};
|
||||
|
||||
const dmSerif = DM_Serif_Display({ variable: "--font-dm-serif", subsets: ["latin"], weight: ["400"] }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"] });
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
"use client";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
@@ -12,37 +11,101 @@ import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
|
||||
export default function Page() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Work", id: "/work" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
];
|
||||
|
||||
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">
|
||||
<NavbarStyleApple navItems={[{name: "Home", id: "/"}]} />
|
||||
<NavbarStyleApple navItems={navItems} />
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardRotatedCarousel title="Innovate Your Future" description="Transforming ideas into reality with cutting edge technology." background={{variant: "rotated-rays-animated"}} carouselItems={Array.from({length: 6}).map((_, i) => ({id: i.toString(), imageSrc: "https://picsum.photos/800/600?random=" + i}))} />
|
||||
<HeroBillboardRotatedCarousel
|
||||
title="Build Your Future"
|
||||
description="Innovation at the speed of light."
|
||||
background={{ variant: "gradient-bars" }}
|
||||
carouselItems={Array(6).fill({ id: "1", imageSrc: "https://images.unsplash.com/photo-1506744038136-46273834b3fb" })}
|
||||
/>
|
||||
</div>
|
||||
<div id="trust" data-section="trust">
|
||||
<SocialProofOne names={["Company A", "Company B", "Company C"]} title="Trusted by Industry Leaders" description="Proven excellence in delivering high-impact solutions." textboxLayout="default" useInvertedBackground={false} />
|
||||
<SocialProofOne
|
||||
names={["Company A", "Company B", "Company C", "Company D"]}
|
||||
title="Trusted By"
|
||||
description="Leading industry partners."
|
||||
/>
|
||||
</div>
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardMedia title="Our Expertise" description="We provide comprehensive solutions tailored to your needs." animationType="slide-up" textboxLayout="default" useInvertedBackground={false} features={[{id: "1", title: "Design", description: "Crafting beautiful user interfaces.", tag: "Creative"}, {id: "2", title: "Development", description: "Building robust scalable applications.", tag: "Technical"}]} />
|
||||
<FeatureCardMedia
|
||||
features={[
|
||||
{ id: "1", title: "Design", description: "High quality UI/UX", tag: "Design" },
|
||||
{ id: "2", title: "Dev", description: "Fast robust code", tag: "Code" }
|
||||
]}
|
||||
animationType="slide-up"
|
||||
title="Our Services"
|
||||
description="Comprehensive solutions."
|
||||
/>
|
||||
</div>
|
||||
<div id="work" data-section="work">
|
||||
<ProductCardOne title="Our Portfolio" description="Showcasing our best work." gridVariant="uniform-all-items-equal" animationType="slide-up" textboxLayout="default" useInvertedBackground={false} products={[{id: "1", name: "Project One", price: "$99", imageSrc: "https://picsum.photos/400/300?random=1"}, {id: "2", name: "Project Two", price: "$199", imageSrc: "https://picsum.photos/400/300?random=2"}, {id: "3", name: "Project Three", price: "$299", imageSrc: "https://picsum.photos/400/300?random=3"}]} />
|
||||
<ProductCardOne
|
||||
gridVariant="bento-grid"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
title="Portfolio"
|
||||
description="Selected works."
|
||||
products={[
|
||||
{ id: "1", name: "Product 1", price: "$10", imageSrc: "https://images.unsplash.com/photo-1506744038136-46273834b3fb" },
|
||||
{ id: "2", name: "Product 2", price: "$20", imageSrc: "https://images.unsplash.com/photo-1506744038136-46273834b3fb" },
|
||||
{ id: "3", name: "Product 3", price: "$30", imageSrc: "https://images.unsplash.com/photo-1506744038136-46273834b3fb" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="process" data-section="process">
|
||||
<MetricCardEleven title="Our Process" description="Data-driven results for your business." animationType="slide-up" textboxLayout="default" useInvertedBackground={false} metrics={[{id: "1", value: "95%", title: "Efficiency", description: "Optimized performance metrics.", imageSrc: "https://picsum.photos/400/300?random=1"}, {id: "2", value: "500+", title: "Projects", description: "Successful deliveries.", imageSrc: "https://picsum.photos/400/300?random=2"}]} />
|
||||
<MetricCardEleven
|
||||
metrics={[
|
||||
{ id: "1", value: "100%", title: "Success", description: "Proven results", imageSrc: "https://images.unsplash.com/photo-1506744038136-46273834b3fb" }
|
||||
]}
|
||||
animationType="slide-up"
|
||||
title="Our Process"
|
||||
description="Efficiency driven."
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTwo title="Client Success Stories" description="Don't just take our word for it." animationType="slide-up" textboxLayout="default" useInvertedBackground={false} testimonials={[{id: "1", name: "Jane Doe", role: "CEO", testimonial: "Fantastic service and exceptional quality.", imageSrc: "https://picsum.photos/100/100?random=1"}, {id: "2", name: "John Smith", role: "CTO", testimonial: "They exceeded all our expectations.", imageSrc: "https://picsum.photos/100/100?random=2"}]} />
|
||||
<TestimonialCardTwo
|
||||
testimonials={[
|
||||
{ id: "1", name: "John", role: "CEO", testimonial: "Fantastic work!" }
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
title="Testimonials"
|
||||
description="What they say."
|
||||
/>
|
||||
</div>
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitMedia title="Frequently Asked Questions" description="Get the answers you need." faqsAnimation="slide-up" textboxLayout="default" useInvertedBackground={false} faqs={[{id: "1", title: "What is your process?", content: "We follow a streamlined approach."}]} />
|
||||
<FaqSplitMedia
|
||||
faqs={[
|
||||
{ id: "1", title: "How?", content: "Simple steps." }
|
||||
]}
|
||||
faqsAnimation="slide-up"
|
||||
title="FAQs"
|
||||
description="Questions answered."
|
||||
/>
|
||||
</div>
|
||||
<div id="cta" data-section="cta">
|
||||
<ContactText text="Ready to start your journey with us?" background={{variant: "rotated-rays-animated"}} useInvertedBackground={false} />
|
||||
<ContactText
|
||||
text="Let's collaborate!"
|
||||
background={{ variant: "gradient-bars" }}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple columns={[]} bottomLeftText="© 2024 All rights reserved." bottomRightText="Privacy Policy" />
|
||||
<FooterSimple
|
||||
columns={[]}
|
||||
bottomLeftText="© 2024"
|
||||
bottomRightText="Privacy"
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user