3 Commits

Author SHA1 Message Date
864792131f Update src/app/styles/base.css 2026-04-20 12:01:40 +00:00
b0a240d9b1 Update src/app/page.tsx 2026-04-20 12:01:39 +00:00
39eb35be57 Merge version_2 into main
Merge version_2 into main
2026-04-20 12:00:54 +00:00
2 changed files with 20 additions and 16 deletions

View File

@@ -2,15 +2,15 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText'; import ContactCenter from '@/components/sections/contact/ContactCenter';
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia'; import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
import FooterCard from '@/components/sections/footer/FooterCard'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import HeroLogo from '@/components/sections/hero/HeroLogo'; import HeroLogo from '@/components/sections/hero/HeroLogo';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ProductCardFour from '@/components/sections/product/ProductCardFour'; import ProductCardFour from '@/components/sections/product/ProductCardFour';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import { Coffee, Utensils } from "lucide-react"; import { Coffee, MapPin } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -21,10 +21,10 @@ export default function LandingPage() {
contentWidth="medium" contentWidth="medium"
sizing="mediumLarge" sizing="mediumLarge"
background="noiseDiagonalGradient" background="noiseDiagonalGradient"
cardStyle="subtle-shadow" cardStyle="glass-elevated"
primaryButtonStyle="shadow" primaryButtonStyle="primary-glow"
secondaryButtonStyle="radial-glow" secondaryButtonStyle="glass"
headingFontWeight="light" headingFontWeight="semibold"
> >
<ReactLenis root> <ReactLenis root>
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
@@ -34,7 +34,7 @@ export default function LandingPage() {
{ name: "Menu", id: "menu" }, { name: "Menu", id: "menu" },
{ name: "Sides & Appetizers", id: "sides" }, { name: "Sides & Appetizers", id: "sides" },
{ name: "Gallery", id: "gallery" }, { name: "Gallery", id: "gallery" },
{ name: "Visit Us", id: "contact" }, { name: "Contact", id: "contact" },
]} ]}
brandName="Gelateca" brandName="Gelateca"
/> />
@@ -144,18 +144,22 @@ export default function LandingPage() {
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactText <ContactCenter
tag="Find Us"
title="Located near Dede Gorgud Park & Zoo"
description="Visit us today to experience the taste of Italy in Baku. We are conveniently situated for a perfect day out."
tagIcon={MapPin}
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={true} useInvertedBackground={true}
background={{ variant: "gradient-bars" }} buttonText="Get Directions"
text="Visit us today and taste real Italy. We're located near Dede Gorgud Park & Zoo."
buttons={[{ text: "Get Directions", href: "https://maps.google.com" }]}
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterCard <FooterLogoReveal
logoText="Gelateca" logoText="Gelateca"
copyrightText="© 2025 Gelateca | All rights reserved." leftLink={{ text: "Menu", href: "#menu" }}
rightLink={{ text: "Contact", href: "#contact" }}
/> />
</div> </div>
</ReactLenis> </ReactLenis>

View File

@@ -11,7 +11,7 @@ html {
body { body {
background-color: var(--background); background-color: var(--background);
color: var(--foreground); color: var(--foreground);
font-family: var(--font-font-family: var(--font-poppins), sans-serif;), sans-serif; font-family: var(--font-font-family: var(--font-libre-baskerville), sans-serif;), sans-serif;
position: relative; position: relative;
min-height: 100vh; min-height: 100vh;
overscroll-behavior: none; overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4, h4,
h5, h5,
h6 { h6 {
font-family: var(--font-font-family: var(--font-poppins), sans-serif;), sans-serif; font-family: var(--font-font-family: var(--font-libre-baskerville), sans-serif;), sans-serif;
} }