Compare commits
9 Commits
version_18
...
version_23
| Author | SHA1 | Date | |
|---|---|---|---|
| ca5242eadb | |||
| fb8f96453f | |||
| 11eee3632a | |||
| 05d7cced54 | |||
| 67f85cca91 | |||
| 92e5332862 | |||
| 02e85272cc | |||
| 278343061e | |||
| 1f4f1ddd8f |
@@ -1,7 +1,7 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit';
|
import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit';
|
||||||
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
||||||
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
|
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
|
||||||
@@ -21,7 +21,7 @@ export default function LandingPage() {
|
|||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="shift-hover"
|
defaultButtonVariant="shift-hover"
|
||||||
defaultTextAnimation="reveal-blur"
|
defaultTextAnimation="reveal-blur"
|
||||||
borderRadius="sharp"
|
borderRadius="pill"
|
||||||
contentWidth="medium"
|
contentWidth="medium"
|
||||||
sizing="mediumLarge"
|
sizing="mediumLarge"
|
||||||
background="circleGradient"
|
background="circleGradient"
|
||||||
@@ -31,15 +31,18 @@ export default function LandingPage() {
|
|||||||
headingFontWeight="normal"
|
headingFontWeight="normal"
|
||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleApple
|
<NavbarLayoutFloatingInline
|
||||||
brandName="Crimson Seoul"
|
brandName="Crimson Seoul"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "About", id: "about" },
|
{ name: "Products", id: "#products" },
|
||||||
{ name: "Menu", id: "menu" },
|
{ name: "Features", id: "#features" },
|
||||||
{ name: "Experience", id: "experience" },
|
{ name: "Gallery", id: "#gallery" }
|
||||||
{ name: "Testimonials", id: "testimonials" },
|
|
||||||
{ name: "Reserve", id: "contact" }
|
|
||||||
]}
|
]}
|
||||||
|
button={{
|
||||||
|
text: "Reserve",
|
||||||
|
href: "#contact",
|
||||||
|
variant: "primary"
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -87,7 +87,7 @@ const HeroLogoBillboardSplit = ({
|
|||||||
return (
|
return (
|
||||||
<section
|
<section
|
||||||
aria-label={ariaLabel}
|
aria-label={ariaLabel}
|
||||||
className={cls("relative w-full py-10", className)}
|
className={cls("relative w-full py-48 pb-32", className)}
|
||||||
>
|
>
|
||||||
<HeroBackgrounds {...background} />
|
<HeroBackgrounds {...background} />
|
||||||
<div className={cls("w-content-width mx-auto flex flex-col gap-6 md:gap-15 relative z-10", containerClassName)}>
|
<div className={cls("w-content-width mx-auto flex flex-col gap-6 md:gap-15 relative z-10", containerClassName)}>
|
||||||
|
|||||||
Reference in New Issue
Block a user