20 Commits

Author SHA1 Message Date
92e21b270d Merge version_5 into main
Merge version_5 into main
2025-12-26 11:48:21 +00:00
923eddce20 Update src/app/page.tsx 2025-12-26 11:48:16 +00:00
272eeaa642 Update src/app/page.tsx 2025-12-26 11:47:44 +00:00
7e5d448741 Update src/app/layout.tsx 2025-12-26 11:47:43 +00:00
6d8d07bcfd Update src/app/globals.css 2025-12-26 11:47:42 +00:00
928b13b998 Update src/app/page.tsx 2025-12-26 11:47:21 +00:00
8557398538 Update src/app/layout.tsx 2025-12-26 11:47:20 +00:00
cbca2ceac2 Update src/app/globals.css 2025-12-26 11:47:19 +00:00
2d877fd33f Update src/app/page.tsx 2025-12-26 11:47:00 +00:00
d004d31017 Update src/app/layout.tsx 2025-12-26 11:46:59 +00:00
e3bb0a5071 Update src/app/globals.css 2025-12-26 11:46:58 +00:00
e41b9a4be5 Update src/app/page.tsx 2025-12-26 11:46:33 +00:00
885f48aaca Update src/app/layout.tsx 2025-12-26 11:46:32 +00:00
b0c76a3d59 Update src/app/globals.css 2025-12-26 11:46:31 +00:00
ea4713750a Merge version_4 into main
Merge version_4 into main
2025-12-26 11:45:19 +00:00
b42502ecfb Update src/app/page.tsx 2025-12-26 11:45:14 +00:00
f19a3a1322 Update src/app/layout.tsx 2025-12-26 11:45:14 +00:00
36bf4b96af Update src/app/globals.css 2025-12-26 11:45:13 +00:00
de48c5435f Merge version_3 into main
Merge version_3 into main
2025-12-26 11:42:47 +00:00
37f0a35b4a Merge version_2 into main
Merge version_2 into main
2025-12-26 11:40:06 +00:00
3 changed files with 25 additions and 25 deletions

View File

@@ -6,8 +6,8 @@
--background: #0a0a0a;
--card: #1a1a1a;
--foreground: #fffef5e6;
--primary-cta: #facc15;
--foreground: #fff0f0e6;
--primary-cta: #ff3d4a;
--secondary-cta: #1a1a1a;
--accent: #737373;
--background-accent: #737373;
@@ -495,7 +495,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-poppins), sans-serif;
font-family: var(--font-inter-tight), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -508,5 +508,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-poppins), sans-serif;
font-family: var(--font-inter-tight), sans-serif;
}

View File

@@ -11,22 +11,22 @@ const poppins = Poppins({
});
export const metadata: Metadata = {
title: "2 - Premium Specialty Coffee",
description: "Discover exceptional specialty coffee at 2. Premium beans, expert baristas, welcoming atmosphere.",
title: "3 - Premium Specialty Coffee",
description: "Discover exceptional specialty coffee at 3. Premium beans, expert baristas, welcoming atmosphere.",
keywords: ["specialty coffee", "coffee shop", "espresso", "cafe", "artisan coffee"],
robots: {
index: true,
follow: true,
},
openGraph: {
title: "2 - Premium Specialty Coffee",
description: "Discover exceptional specialty coffee at 2",
siteName: "2",
title: "3 - Premium Specialty Coffee",
description: "Discover exceptional specialty coffee at 3",
siteName: "3",
type: "website",
images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766749013962-htnou8d4.jpg",
alt: "2 coffee",
alt: "3 coffee",
},
],
},

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
@@ -26,7 +26,7 @@ export default function LandingPage() {
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="2"
brandName="3"
navItems={[
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
@@ -42,15 +42,15 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroLogoBillboard
logoText="2"
description="Discover the perfect cup. Crafted with passion, served with care. Premium specialty coffee for coffee lovers."
<HeroBillboardScroll
title="3"
description="asdasdasdasdasdasd"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766749013962-htnou8d4.jpg"
imageAlt="Freshly brewed espresso with latte art"
frameStyle="card"
containerClassName="bg-gradient-to-br from-green-50 to-white"
logoClassName="text-green-700"
descriptionClassName="text-gray-800 text-lg md:text-3xl"
buttons={[
{ text: "Explore Menu", href: "#products" },
{ text: "Learn More", href: "#about" }
]}
/>
</div>
@@ -60,7 +60,7 @@ export default function LandingPage() {
tagIcon={Coffee}
title="Brewing Excellence Since Day One"
description="Founded in 2015 by coffee enthusiasts who believed great coffee brings people together"
subdescription="2 Coffee Roasters"
subdescription="3 Coffee Roasters"
icon={Sparkles}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766749014990-ucar89w4.jpg"
imageAlt="Premium coffee beans selection"
@@ -73,7 +73,7 @@ export default function LandingPage() {
products={[
{
id: "1",
brand: "2",
brand: "3",
name: "Single Origin Ethiopia",
price: "$18.00",
rating: 5,
@@ -83,7 +83,7 @@ export default function LandingPage() {
},
{
id: "2",
brand: "2",
brand: "3",
name: "House Blend Espresso",
price: "$16.00",
rating: 5,
@@ -93,7 +93,7 @@ export default function LandingPage() {
},
{
id: "3",
brand: "2",
brand: "3",
name: "Seasonal Cold Brew",
price: "$15.00",
rating: 4,
@@ -144,7 +144,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterSplit
logoText="2"
logoText="3"
title="Quality Coffee, Sustainable Sourcing, Community Connection"
columns={[
{
@@ -165,7 +165,7 @@ export default function LandingPage() {
]}
contactItems={[
{ icon: Phone, text: "(555) 123-4567" },
{ icon: Mail, text: "hello@2.com" },
{ icon: Mail, text: "hello@3.com" },
{ icon: MapPin, text: "123 Coffee Lane, Brew City, BC 12345" }
]}
/>