diff --git a/src/app/page.tsx b/src/app/page.tsx
index d11f9bc..4020c91 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -3,14 +3,14 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import AboutMetric from '@/components/sections/about/AboutMetric';
-import ContactSplit from '@/components/sections/contact/ContactSplit';
-import FaqDouble from '@/components/sections/faq/FaqDouble';
+import ContactCTA from '@/components/sections/contact/ContactCTA';
+import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen';
-import FooterCard from '@/components/sections/footer/FooterCard';
+import FooterMedia from '@/components/sections/footer/FooterMedia';
import HeroLogo from '@/components/sections/hero/HeroLogo';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
-import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
+import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import { Award, Coffee, Facebook, Instagram, Users } from "lucide-react";
export default function LandingPage() {
@@ -31,22 +31,10 @@ export default function LandingPage() {
@@ -56,12 +44,7 @@ export default function LandingPage() {
@@ -74,42 +57,12 @@ export default function LandingPage() {
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={true}
products={[
- {
- id: "1",
- name: "Signature Latte",
- price: "RM 12.00",
- imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-making-coffee_23-2150354576.jpg",
- },
- {
- id: "2",
- name: "Buttery Croissant",
- price: "RM 8.50",
- imageSrc: "http://img.b2bpic.net/free-photo/croissants-pan-with-cup-tea-honey-dipper-flat-lay-wooden-kitchen-towel_176474-8195.jpg",
- },
- {
- id: "3",
- name: "Avocado Toast",
- price: "RM 18.00",
- imageSrc: "http://img.b2bpic.net/free-photo/plate-profiteroles-served-with-chocolate-sauce_114579-2339.jpg",
- },
- {
- id: "4",
- name: "Cold Brew",
- price: "RM 14.00",
- imageSrc: "http://img.b2bpic.net/free-photo/hand-pouring-milk-into-coffee-cup_23-2149600729.jpg",
- },
- {
- id: "5",
- name: "Chicken Club",
- price: "RM 22.00",
- imageSrc: "http://img.b2bpic.net/free-photo/fresh-healthy-food-breakfast-lunch-ideas-bread-with-cheese-avocado-greenery_8353-8795.jpg",
- },
- {
- id: "6",
- name: "Matcha Cheesecake",
- price: "RM 16.00",
- imageSrc: "http://img.b2bpic.net/free-photo/young-woman-eating-delicious-tiramisu-cafe_1303-25266.jpg",
- },
+ { id: "1", name: "Signature Latte", price: "RM 12.00", imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-making-coffee_23-2150354576.jpg" },
+ { id: "2", name: "Buttery Croissant", price: "RM 8.50", imageSrc: "http://img.b2bpic.net/free-photo/croissants-pan-with-cup-tea-honey-dipper-flat-lay-wooden-kitchen-towel_176474-8195.jpg" },
+ { id: "3", name: "Avocado Toast", price: "RM 18.00", imageSrc: "http://img.b2bpic.net/free-photo/plate-profiteroles-served-with-chocolate-sauce_114579-2339.jpg" },
+ { id: "4", name: "Cold Brew", price: "RM 14.00", imageSrc: "http://img.b2bpic.net/free-photo/hand-pouring-milk-into-coffee-cup_23-2149600729.jpg" },
+ { id: "5", name: "Chicken Club", price: "RM 22.00", imageSrc: "http://img.b2bpic.net/free-photo/fresh-healthy-food-breakfast-lunch-ideas-bread-with-cheese-avocado-greenery_8353-8795.jpg" },
+ { id: "6", name: "Matcha Cheesecake", price: "RM 16.00", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-eating-delicious-tiramisu-cafe_1303-25266.jpg" },
]}
title="Handcrafted Delights"
description="Discover our curated selection of specialty coffee, fresh pastries, and artisanal light bites."
@@ -121,21 +74,9 @@ export default function LandingPage() {
useInvertedBackground={false}
title="The Piccolo Philosophy"
metrics={[
- {
- icon: Coffee,
- label: "Beans Roasted Weekly",
- value: "50kg+",
- },
- {
- icon: Users,
- label: "Happy Customers",
- value: "10k+",
- },
- {
- icon: Award,
- label: "Years Brewing",
- value: "5",
- },
+ { icon: Coffee, label: "Beans Roasted Weekly", value: "50kg+" },
+ { icon: Users, label: "Happy Customers", value: "10k+" },
+ { icon: Award, label: "Years Brewing", value: "5" },
]}
metricsAnimation="slide-up"
/>
@@ -146,135 +87,57 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
- negativeCard={{
- items: [
- "No artificial flavors",
- "Zero compromise",
- "Always authentic",
- ],
- }}
- positiveCard={{
- items: [
- "Fresh, local beans",
- "Ethical sourcing",
- "Skilled baristas",
- ],
- }}
+ negativeCard={{ items: ["No artificial flavors", "Zero compromise", "Always authentic"] }}
+ positiveCard={{ items: ["Fresh, local beans", "Ethical sourcing", "Skilled baristas"] }}
title="Why Choose Piccolo"
description="We take the extra steps to ensure your cafe experience is truly exceptional."
/>
-
-
-
diff --git a/src/app/styles/base.css b/src/app/styles/base.css
index ce3eac0..815a17c 100644
--- a/src/app/styles/base.css
+++ b/src/app/styles/base.css
@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
- font-family: var(--font-public-sans), sans-serif;
+ font-family: var(--font-open-sans), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
- font-family: var(--font-public-sans), sans-serif;
+ font-family: var(--font-montserrat), sans-serif;
}
diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css
index b7afc67..b168257 100644
--- a/src/app/styles/variables.css
+++ b/src/app/styles/variables.css
@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
- --background: #f5f4ef;
- --card: #dad6cd;
- --foreground: #2a2928;
- --primary-cta: #2a2928;
+ --background: #f6f0e9;
+ --card: #efe7dd;
+ --foreground: #2b180a;
+ --primary-cta: #2b180a;
--primary-cta-text: #f5f4ef;
- --secondary-cta: #ecebea;
+ --secondary-cta: #efe7dd;
--secondary-cta-text: #2a2928;
- --accent: #ffffff;
- --background-accent: #c6b180;
+ --accent: #94877c;
+ --background-accent: #afa094;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);