Merge version_1 into main #12
@@ -11,8 +11,8 @@ import { Playfair_Display, Inter } from "next/font/google";
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Webild Platform',
|
||||
description: 'Professional business platform.',
|
||||
title: 'Home | Webild',
|
||||
description: 'Innovating tomorrow with sustainable solutions and cutting-edge design.',
|
||||
openGraph: {
|
||||
"siteName": "DEL Herren Friseur"
|
||||
},
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
|
||||
@@ -6,34 +8,80 @@ import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
|
||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import { Star, Shield, ArrowRight } from 'lucide-react';
|
||||
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
];
|
||||
export default function HomePage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
];
|
||||
|
||||
export default function Page() {
|
||||
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
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen navItems={navItems} />
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardRotatedCarousel title="Welcome to Webild" description="Professional solutions for your business." background={{ variant: "animated-grid" }} carouselItems={[{ id: "1" }, { id: "2" }, { id: "3" }, { id: "4" }, { id: "5" }, { id: "6" }]} />
|
||||
<HeroBillboardRotatedCarousel
|
||||
title="Innovating Tomorrow"
|
||||
description="We build sustainable solutions for a better future, powered by cutting-edge design and engineering."
|
||||
background={{ variant: 'animated-grid' }}
|
||||
carouselItems={Array.from({ length: 6 }).map((_, i) => ({ id: `h${i}`, imageSrc: "https://images.unsplash.com/photo-1550751827-4bd374c3f58b?auto=format&fit=crop&q=80&w=800", imageAlt: "Hero Image" }))}
|
||||
/>
|
||||
</div>
|
||||
<div id="about" data-section="about">
|
||||
<TextSplitAbout title="About Us" description={["We build high quality software."]} useInvertedBackground={false} />
|
||||
<TextSplitAbout
|
||||
title="Our Mission"
|
||||
description={["We believe in creating technology that empowers individuals and transforms industries.", "With over a decade of experience, our team is dedicated to excellence and innovation."]}
|
||||
/>
|
||||
</div>
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardTwelve title="Services" description="We provide top tier development services." animationType="opacity" textboxLayout="split" features={[{ id: "1", label: "Dev", title: "Development", items: ["Web", "Mobile"] }]} useInvertedBackground={false} />
|
||||
<FeatureCardTwelve
|
||||
title="Our Services"
|
||||
description="Comprehensive solutions tailored to your unique business needs."
|
||||
textboxLayout="split"
|
||||
animationType="slide-up"
|
||||
features={[
|
||||
{ id: "s1", label: "Growth", title: "Strategic Planning", items: ["Market Analysis", "Roadmap Design"] },
|
||||
{ id: "s2", label: "Build", title: "Product Engineering", items: ["Web Development", "App Design"] }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardOne title="Testimonials" description="What our clients say about us." gridVariant="uniform-all-items-equal" animationType="opacity" textboxLayout="default" testimonials={[{ id: "1", name: "John", role: "CEO", company: "Corp", rating: 5 }]} useInvertedBackground={false} />
|
||||
<TestimonialCardOne
|
||||
title="Client Success"
|
||||
description="Hear from our partners about how we've helped them scale."
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
testimonials={Array.from({ length: 3 }).map((_, i) => ({ id: `t${i}`, name: "Client", role: "Founder", company: "Innovate Corp", rating: 5 }))}
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText text="Contact us today" background={{ variant: "plain" }} useInvertedBackground={false} />
|
||||
<ContactText
|
||||
text="Let's collaborate on your next big project today."
|
||||
background={{ variant: "gradient-bars" }}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple columns={[{ title: "Links", items: [{ label: "Home", href: "/" }] }]} bottomLeftText="© 2024" bottomRightText="All rights reserved" />
|
||||
<FooterSimple
|
||||
columns={[{ title: "Links", items: [{ label: "Home", href: "/" }] }]}
|
||||
bottomLeftText="© 2024 Webild"
|
||||
bottomRightText="All rights reserved"
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user