diff --git a/src/app/page.tsx b/src/app/page.tsx index fec1847..d31f4c6 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,14 +1,14 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import HeroLogoBillboardSplit from "@/components/sections/hero/HeroLogoBillboardSplit"; -import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout"; -import FeatureCardTwentyOne from "@/components/sections/feature/FeatureCardTwentyOne"; -import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve"; -import BlogCardThree from "@/components/sections/blog/BlogCardThree"; -import ContactText from "@/components/sections/contact/ContactText"; -import FooterSimple from "@/components/sections/footer/FooterSimple"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit'; +import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; +import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne'; +import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; +import BlogCardThree from '@/components/sections/blog/BlogCardThree'; +import ContactText from '@/components/sections/contact/ContactText'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; export default function LandingPage() { return ( @@ -18,7 +18,7 @@ export default function LandingPage() { borderRadius="pill" contentWidth="small" sizing="medium" - background="noiseDiagonalGradient" + background="circleGradient" cardStyle="solid" primaryButtonStyle="flat" secondaryButtonStyle="glass" @@ -34,7 +34,8 @@ export default function LandingPage() { { name: "Reservations", id: "contact" }, ]} button={{ - text: "Visit Us", href: "#contact"}} + text: "Visit Us", href: "#contact" + }} animateOnLoad={true} className="fixed top-4 left-0 right-0 z-50" navItemClassName="text-foreground hover:text-primary-cta transition-colors" @@ -47,7 +48,7 @@ export default function LandingPage() {