diff --git a/src/app/page.tsx b/src/app/page.tsx
index 0196fd5..070a66b 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -12,7 +12,9 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
-import { Clock, Coffee, MapPin } from "lucide-react";
+import BlogCardThree from '@/components/sections/blog/BlogCardThree';
+import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
+import { Clock, Coffee, MapPin, Instagram } from "lucide-react";
export default function LandingPage() {
return (
@@ -33,25 +35,17 @@ export default function LandingPage() {
@@ -60,56 +54,35 @@ export default function LandingPage() {
@@ -121,19 +94,13 @@ export default function LandingPage() {
metrics={[
{
icon: Coffee,
- label: "Signature Brews",
- value: "15+",
- },
+ label: "Signature Brews", value: "15+"},
{
icon: MapPin,
- label: "Locations",
- value: "1",
- },
+ label: "Locations", value: "1"},
{
icon: Clock,
- label: "Daily Hours",
- value: "16h",
- },
+ label: "Daily Hours", value: "16h"},
]}
metricsAnimation="slide-up"
/>
@@ -146,20 +113,11 @@ export default function LandingPage() {
description="More than just coffee. We care about the small details that make your day brighter, from our curated book selection to our friendly cafe cats."
accordionItems={[
{
- id: "c1",
- title: "Cozy Atmosphere",
- content: "Beautiful, thoughtful details make our cafe the perfect place to work or unwind.",
- },
+ id: "c1", title: "Cozy Atmosphere", content: "Beautiful, thoughtful details make our cafe the perfect place to work or unwind."},
{
- id: "c2",
- title: "Friendly Staff",
- content: "Our staff are passionate about specialty coffee and creating a welcoming experience for everyone.",
- },
+ id: "c2", title: "Friendly Staff", content: "Our staff are passionate about specialty coffee and creating a welcoming experience for everyone."},
{
- id: "c3",
- title: "Cat-Friendly Spot",
- content: "Enjoy your brew in the company of our adorable resident cats.",
- },
+ id: "c3", title: "Cat-Friendly Spot", content: "Enjoy your brew in the company of our adorable resident cats."},
]}
imageSrc="http://img.b2bpic.net/free-photo/breakfast-tray-with-cat_23-2148079722.jpg"
mediaAnimation="blur-reveal"
@@ -174,47 +132,54 @@ export default function LandingPage() {
useInvertedBackground={true}
products={[
{
- id: "1",
- name: "Strawberry Matcha Latte",
- price: "KWD 2.5",
- imageSrc: "http://img.b2bpic.net/free-photo/glass-green-tea_23-2148170701.jpg",
- },
+ id: "1", name: "Strawberry Matcha Latte", price: "KWD 2.5", imageSrc: "http://img.b2bpic.net/free-photo/glass-green-tea_23-2148170701.jpg"},
{
- id: "2",
- name: "Flat White",
- price: "KWD 1.8",
- imageSrc: "http://img.b2bpic.net/free-photo/closeup-classic-fresh-espresso-served-dark-surface_1220-5375.jpg",
- },
+ id: "2", name: "Flat White", price: "KWD 1.8", imageSrc: "http://img.b2bpic.net/free-photo/closeup-classic-fresh-espresso-served-dark-surface_1220-5375.jpg"},
{
- id: "3",
- name: "Oat Milk Latte",
- price: "KWD 2.0",
- imageSrc: "http://img.b2bpic.net/free-photo/cocoa-with-laptop-cozy-winter-home-warm-background_501050-180.jpg",
- },
+ id: "3", name: "Oat Milk Latte", price: "KWD 2.0", imageSrc: "http://img.b2bpic.net/free-photo/cocoa-with-laptop-cozy-winter-home-warm-background_501050-180.jpg"},
{
- id: "4",
- name: "Ube Matcha Latte",
- price: "KWD 2.2",
- imageSrc: "http://img.b2bpic.net/free-photo/top-view-red-blue-smoothies_23-2148303013.jpg",
- },
+ id: "4", name: "Ube Matcha Latte", price: "KWD 2.2", imageSrc: "http://img.b2bpic.net/free-photo/top-view-red-blue-smoothies_23-2148303013.jpg"},
{
- id: "5",
- name: "Fudgy Brownie",
- price: "KWD 1.5",
- imageSrc: "http://img.b2bpic.net/free-photo/christmas-brownie-wooden-table_123827-34744.jpg",
- },
+ id: "5", name: "Fudgy Brownie", price: "KWD 1.5", imageSrc: "http://img.b2bpic.net/free-photo/christmas-brownie-wooden-table_123827-34744.jpg"},
{
- id: "6",
- name: "Brazilian Espresso",
- price: "KWD 1.2",
- imageSrc: "http://img.b2bpic.net/free-photo/four-glasses-with-liqueur-put-line_181624-8994.jpg",
- },
+ id: "6", name: "Brazilian Espresso", price: "KWD 1.2", imageSrc: "http://img.b2bpic.net/free-photo/four-glasses-with-liqueur-put-line_181624-8994.jpg"},
]}
title="Explore Our Menu"
description="Crafted with love using high-quality ingredients."
/>
+
+
+
+
+
+
+
+
@@ -375,42 +275,27 @@ export default function LandingPage() {