Compare commits
2 Commits
50cd198b06
...
version_5
| Author | SHA1 | Date | |
|---|---|---|---|
| 7ae2d29fa9 | |||
| 8b6e0dde40 |
@@ -4,13 +4,13 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
--background: #f8fcff;;
|
--background: #1a1a1a;
|
||||||
--card: #ffffff;;
|
--card: #1a1a1a;
|
||||||
--foreground: #00101f;;
|
--foreground: #ffe6e6e6;
|
||||||
--primary-cta: #409fff;;
|
--primary-cta: #ff0000;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #151515;
|
||||||
--accent: #c7e2fc;;
|
--accent: #303030;
|
||||||
--background-accent: #9bcfff;;
|
--background-accent: #303030;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
@@ -495,7 +495,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-cormorant-garamond), sans-serif;
|
font-family: var(--font-inter-tight), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -508,5 +508,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-cormorant-garamond), sans-serif;
|
font-family: var(--font-inter-tight), sans-serif;
|
||||||
}
|
}
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
"use client"
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
@@ -9,7 +9,7 @@ import MetricCardSix from '@/components/sections/metrics/MetricCardSix';
|
|||||||
import TestimonialCardEight from '@/components/sections/testimonial/TestimonialCardEight';
|
import TestimonialCardEight from '@/components/sections/testimonial/TestimonialCardEight';
|
||||||
import ContactCenterForm from '@/components/sections/contact/ContactCenterForm';
|
import ContactCenterForm from '@/components/sections/contact/ContactCenterForm';
|
||||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||||
import { Award, Users, Wine, Clock, Sparkles, Chef, Leaf } from "lucide-react";
|
import { Award, Users, Wine, Clock, Sparkles, ChefHat, Leaf } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -29,7 +29,7 @@ export default function LandingPage() {
|
|||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
brandName="Trattoria"
|
brandName="Trattoria"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "home" },
|
{ name: "Home", id: "hero" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Menu", id: "menu" },
|
{ name: "Menu", id: "menu" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "contact" }
|
||||||
@@ -70,7 +70,7 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
title: "Authentic Recipes",
|
title: "Authentic Recipes",
|
||||||
description: "Traditional Italian dishes prepared with passion and precision",
|
description: "Traditional Italian dishes prepared with passion and precision",
|
||||||
icon: Chef
|
icon: ChefHat
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Premium Ingredients",
|
title: "Premium Ingredients",
|
||||||
@@ -280,7 +280,7 @@ export default function LandingPage() {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{ label: "Home", href: "home" },
|
{ label: "Home", href: "hero" },
|
||||||
{ label: "About", href: "about" },
|
{ label: "About", href: "about" },
|
||||||
{ label: "Menu", href: "menu" }
|
{ label: "Menu", href: "menu" }
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user