Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 61dfb37d16 | |||
| 8baa576959 | |||
| 74e4b213fe | |||
| fc654b2bb7 |
@@ -1,5 +1,40 @@
|
||||
import { redirect } from 'next/navigation';
|
||||
"use client";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
||||
import HeroSignup from "@/components/sections/hero/HeroSignup";
|
||||
|
||||
export default function Home() {
|
||||
redirect('/components');
|
||||
}
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Features", id: "#features" },
|
||||
{ name: "About", id: "#about" }
|
||||
]}
|
||||
brandName="Webild"
|
||||
/>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSignup
|
||||
title="Unlock Your Potential with Seamless Digital Experiences"
|
||||
description="Experience the future of web development. Build stunning, high-performing websites with intuitive tools and unparalleled flexibility, designed to elevate your brand and engage your audience."
|
||||
tag="Your Vision, Our Expertise"
|
||||
background={{
|
||||
variant: "radial-gradient"
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user