Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ad52610442 | |||
| 5ae0e95600 | |||
| f589039452 | |||
| 52d0140026 |
@@ -4,13 +4,13 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
--background: #fafefe;;
|
--background: #faf5f2;
|
||||||
--card: #f0feff;;
|
--card: #f5ede8;
|
||||||
--foreground: #001a1a;;
|
--foreground: #3d2417;
|
||||||
--primary-cta: #16d4f6;;
|
--primary-cta: #d4704c;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #ffffff;
|
||||||
--accent: #22d3ee;;
|
--accent: #e8a88f;
|
||||||
--background-accent: #06b6d4;;
|
--background-accent: #b85a3a;
|
||||||
|
|
||||||
/* 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-jetbrains-mono), 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-jetbrains-mono), sans-serif;
|
font-family: var(--font-inter-tight), sans-serif;
|
||||||
}
|
}
|
||||||
@@ -1269,4 +1269,4 @@ export default function RootLayout({
|
|||||||
</ServiceWrapper>
|
</ServiceWrapper>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
"use client"
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||||
@@ -8,6 +8,7 @@ import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
|||||||
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
||||||
import ContactText from '@/components/sections/contact/ContactText';
|
import ContactText from '@/components/sections/contact/ContactText';
|
||||||
import FooterSocial from '@/components/sections/footer/FooterSocial';
|
import FooterSocial from '@/components/sections/footer/FooterSocial';
|
||||||
|
import TeamCardSeven from '@/components/sections/team/TeamCardSeven';
|
||||||
import { Instagram, Facebook } from "lucide-react";
|
import { Instagram, Facebook } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
@@ -31,6 +32,7 @@ export default function LandingPage() {
|
|||||||
{ name: "Home", id: "home" },
|
{ name: "Home", id: "home" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Menu", id: "menu" },
|
{ name: "Menu", id: "menu" },
|
||||||
|
{ name: "Team", id: "team" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "contact" }
|
||||||
]}
|
]}
|
||||||
button={{ text: "Reserve", href: "contact" }}
|
button={{ text: "Reserve", href: "contact" }}
|
||||||
@@ -122,6 +124,25 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="team" data-section="team">
|
||||||
|
<TeamCardSeven
|
||||||
|
team={[
|
||||||
|
{
|
||||||
|
id: "1",
|
||||||
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766163678723-295psgl3.jpg",
|
||||||
|
imageAlt: "Damiano Patri, Owner and Founder"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "2",
|
||||||
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766140063369-vzpeyskp.jpg",
|
||||||
|
imageAlt: "Lorenzo Noya, Co-Founder"
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
title="Meet Our Team"
|
||||||
|
useInvertedBackground="noInvert"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
<div id="testimonials" data-section="testimonials">
|
||||||
<TestimonialCardFive
|
<TestimonialCardFive
|
||||||
title="What Our Guests Say"
|
title="What Our Guests Say"
|
||||||
@@ -216,4 +237,4 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user