Update src/app/page.tsx
This commit is contained in:
@@ -1,8 +1,7 @@
|
|||||||
'use client';
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from '@/providers/ThemeProvider';
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal';
|
import NavbarStyleMinimal from "@/components/navbar/NavbarStyleMinimal";
|
||||||
import { Sparkles } from 'lucide-react';
|
|
||||||
|
|
||||||
export default function Home() {
|
export default function Home() {
|
||||||
return (
|
return (
|
||||||
@@ -10,21 +9,24 @@ export default function Home() {
|
|||||||
defaultButtonVariant="text-stagger"
|
defaultButtonVariant="text-stagger"
|
||||||
defaultTextAnimation="entrance-slide"
|
defaultTextAnimation="entrance-slide"
|
||||||
borderRadius="rounded"
|
borderRadius="rounded"
|
||||||
|
contentWidth="medium"
|
||||||
|
sizing="medium"
|
||||||
background="aurora"
|
background="aurora"
|
||||||
cardStyle="glass-elevated"
|
cardStyle="glass-elevated"
|
||||||
primaryButtonStyle="gradient"
|
primaryButtonStyle="gradient"
|
||||||
secondaryButtonStyle="glass"
|
secondaryButtonStyle="glass"
|
||||||
|
headingFontWeight="normal"
|
||||||
>
|
>
|
||||||
<NavbarStyleMinimal
|
<div id="nav" data-section="nav">
|
||||||
brandName="Webild"
|
<NavbarStyleMinimal
|
||||||
button={{ text: 'Get Started', href: 'https://webild.io' }}
|
brandName="Webild"
|
||||||
/>
|
button={{ text: "Get Started", href: "https://webild.io" }}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="hero">
|
<div id="hero" data-section="hero">
|
||||||
{/* Static image carousel replacement */}
|
|
||||||
<div className="w-full bg-gradient-to-b from-background via-background to-card py-16 px-4 md:px-8">
|
<div className="w-full bg-gradient-to-b from-background via-background to-card py-16 px-4 md:px-8">
|
||||||
<div className="max-w-7xl mx-auto">
|
<div className="max-w-7xl mx-auto">
|
||||||
{/* Grid of static images */}
|
|
||||||
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
|
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
|
||||||
<div className="aspect-video bg-accent rounded-lg overflow-hidden">
|
<div className="aspect-video bg-accent rounded-lg overflow-hidden">
|
||||||
<img
|
<img
|
||||||
|
|||||||
Reference in New Issue
Block a user