33 Commits

Author SHA1 Message Date
4f3e3e1026 Merge version_9 into main
Merge version_9 into main
2026-05-23 18:27:29 +00:00
9989780417 Update src/app/page.tsx 2026-05-23 18:27:23 +00:00
72d0d62ed1 Merge version_9 into main
Merge version_9 into main
2026-05-23 18:09:57 +00:00
a3189aa550 Update src/app/page.tsx 2026-05-23 18:09:54 +00:00
308d066151 Merge version_9 into main
Merge version_9 into main
2026-05-23 17:44:16 +00:00
b54bf7b135 Update src/app/page.tsx 2026-05-23 17:44:13 +00:00
20bd3aec42 Merge version_9 into main
Merge version_9 into main
2026-05-23 17:33:25 +00:00
91f6bf3f15 Update theme fonts 2026-05-23 17:33:19 +00:00
93819b66b3 Update theme fonts 2026-05-23 17:33:19 +00:00
bcc8bc5d7d Merge version_9 into main
Merge version_9 into main
2026-05-23 17:32:21 +00:00
58861d3f58 Update theme colors 2026-05-23 17:32:18 +00:00
6c0278ca79 Merge version_8 into main
Merge version_8 into main
2026-05-23 17:32:11 +00:00
42653c5bfb Update theme colors 2026-05-23 17:32:08 +00:00
7fa48218f8 Merge version_7 into main
Merge version_7 into main
2026-05-23 17:32:00 +00:00
3328510ec6 Update theme colors 2026-05-23 17:31:54 +00:00
2551ba89d6 Merge version_6 into main
Merge version_6 into main
2026-05-23 17:31:48 +00:00
f07f2d8d5c Update theme colors 2026-05-23 17:31:45 +00:00
3928bd5493 Merge version_5 into main
Merge version_5 into main
2026-05-23 17:31:28 +00:00
c037b7ad2d Update theme colors 2026-05-23 17:31:25 +00:00
787025a40c Merge version_4 into main
Merge version_4 into main
2026-05-23 16:54:44 +00:00
bd0dc2f97d Update src/app/page.tsx 2026-05-23 16:54:41 +00:00
d185daa18d Merge version_4 into main
Merge version_4 into main
2026-05-23 11:27:02 +00:00
115cb85d13 Update src/app/page.tsx 2026-05-23 11:26:56 +00:00
1baa8ef422 Merge version_4 into main
Merge version_4 into main
2026-05-23 11:26:35 +00:00
3c733a2d34 Update src/app/page.tsx 2026-05-23 11:26:29 +00:00
fd1920f5fa Merge version_4 into main
Merge version_4 into main
2026-05-23 10:48:07 +00:00
39137aa33e Update src/app/styles/variables.css 2026-05-23 10:48:04 +00:00
7e96856393 Update src/app/page.tsx 2026-05-23 10:48:03 +00:00
cc15e0029a Merge version_3 into main
Merge version_3 into main
2026-05-23 10:47:27 +00:00
16dadb0cc7 Update src/app/page.tsx 2026-05-23 10:47:21 +00:00
39c8ba6f8e Merge version_2 into main
Merge version_2 into main
2026-05-23 10:21:16 +00:00
109f0ac718 Update src/app/page.tsx 2026-05-23 10:21:13 +00:00
548b135d36 Merge version_1 into main
Merge version_1 into main
2026-05-23 10:18:35 +00:00
4 changed files with 80 additions and 140 deletions

View File

@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Raleway } from "next/font/google";
import { Libre_Baskerville } from "next/font/google";
@@ -20,8 +21,14 @@ export const metadata: Metadata = {
},
};
const raleway = Raleway({
variable: "--font-raleway",
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
@@ -33,7 +40,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${raleway.variable} antialiased`}>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -32,66 +32,33 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "About", id: "#about"},
{
name: "Features", id: "#features"},
{
name: "Products", id: "#products"},
{
name: "Contact", id: "#contact"},
{ name: "About", id: "#about" },
{ name: "Features", id: "#features" },
{ name: "Products", id: "#products" },
{ name: "FAQ", id: "#faq" },
{ name: "Contact", id: "#contact" },
]}
brandName="Lantika 1960"
button={{
text: "Get Started", href: "#contact"}}
button={{ text: "Get Started", href: "#contact" }}
/>
</div>
<div id="hero" data-section="hero">
<HeroSplitKpi
background={{
variant: "radial-gradient"}}
title="Timeless Heritage Since 1960"
description="Discover the legacy of quality craftsmanship. Lantika 1960 delivers enduring style rooted in decades of traditional excellence."
background={{ variant: "radial-gradient" }}
title="Authentic
Ethiopian
Cuisine"
description=" Authentic Ethiopian food made fresh daily with traditional spices and unforgettable taste."
kpis={[
{
value: "60+", label: "Years Experience"},
{
value: "10k+", label: "Items Crafted"},
{
value: "99%", label: "Quality Rating"},
{ value: "2+", label: "Years Experience" },
{ value: "60+", label: "Menu " },
{ value: "99%", label: "Quality Rating" },
]}
enableKpiAnimation={true}
buttons={[
{
text: "Explore Collection", href: "#products"},
]}
imageSrc="http://img.b2bpic.net/free-photo/weaved-pink-linen-fabric_53876-88704.jpg"
buttons={[{ text: "Explore Collection", href: "#products" }]}
imageSrc="https://img.b2bpic.net/premium-psd/delicious-chicken-stir-fry_787500-54570.jpg?id=413635786"
mediaAnimation="blur-reveal"
avatars={[
{
src: "http://img.b2bpic.net/free-photo/gold-leaf-border-frame-luxury-background_53876-97413.jpg", alt: "Gold leaf border frame luxury background"},
{
src: "http://img.b2bpic.net/free-photo/top-view-wedding-arrangement-with-invitations-ornaments_23-2148289701.jpg", alt: "Top view wedding arrangement with invitations and ornaments"},
{
src: "http://img.b2bpic.net/free-photo/paper-mockup-design-background_53876-90100.jpg", alt: "Paper mockup design background"},
{
src: "http://img.b2bpic.net/free-photo/rectangle-gold-frame-paper_53876-94601.jpg", alt: "Rectangle gold frame on paper"},
{
src: "http://img.b2bpic.net/free-photo/full-shot-artisan-doing-woodcutting_23-2150104842.jpg", alt: "Full shot artisan doing woodcutting"},
]}
marqueeItems={[
{
type: "text", text: "Authentic Design"},
{
type: "text", text: "Heritage Quality"},
{
type: "text", text: "Handcrafted Excellence"},
{
type: "text", text: "Timeless Elegance"},
{
type: "text", text: "Artisan Crafted"},
]}
/>
</div>
@@ -99,17 +66,14 @@ export default function LandingPage() {
<SplitAbout
textboxLayout="split"
useInvertedBackground={false}
title="The Art of Tradition"
description="At Lantika 1960, we believe in preserving the authenticity of our craft. Every piece tells a story of heritage and meticulous attention to detail."
title="Ethiopia's Tradition food"
description="Taste the Tradition of Ethiopia"
bulletPoints={[
{
title: "Legacy Craft", description: "Generations of mastery define our process."},
{
title: "Pure Quality", description: "Sourcing only the finest traditional materials."},
{
title: "Timeless Style", description: "Designs that transcend passing trends."},
{ title: "", description: " Luxury Ethiopian Dining Experience" },
{ title: "Pure Quality", description: "Sourcing only the finest traditional materials." },
{ title: "Timeless Style", description: "Designs that transcend passing trends." },
]}
imageSrc="http://img.b2bpic.net/free-photo/craftswoman-using-blow-torch_107420-65200.jpg"
imageSrc="https://img.b2bpic.net/free-photo/chicken-chop-french-fries-wooden-board_140725-3224.jpg?id=6778823"
mediaAnimation="slide-up"
/>
</div>
@@ -120,12 +84,9 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={true}
features={[
{
id: "f1", title: "Durability", subtitle: "Built to last generations.", category: "Quality", value: "High"},
{
id: "f2", title: "Authenticity", subtitle: "Original heritage designs.", category: "Design", value: "True"},
{
id: "f3", title: "Sustainability", subtitle: "Ethical traditional sourcing.", category: "Values", value: "Key"},
{ id: "f1", title: "Durability", subtitle: "Built to last generations.", category: "Quality", value: "High" },
{ id: "f2", title: "Authenticity", subtitle: "Original heritage designs.", category: "Design", value: "True" },
{ id: "f3", title: "Sustainability", subtitle: "Ethical traditional sourcing.", category: "Values", value: "Key" },
]}
title="Why Lantika 1960?"
description="Our commitment to quality ensures a product experience unlike any other."
@@ -139,21 +100,12 @@ export default function LandingPage() {
gridVariant="two-columns-alternating-heights"
useInvertedBackground={false}
products={[
{
id: "p1", name: "Lantika Heritage Vase", price: "$120", imageSrc: "http://img.b2bpic.net/free-photo/jewelry-inside-red-craft-gift-box_114579-12172.jpg"},
{
id: "p2", name: "Artisan Clay Bowl", price: "$85", imageSrc: "http://img.b2bpic.net/free-photo/onions-pumpkin-wooden-board_23-2148934791.jpg"},
{
id: "p3", name: "Tradition Serving Tray", price: "$150", imageSrc: "http://img.b2bpic.net/free-photo/tools-clay-work-sculpting_23-2149986317.jpg"},
{
id: "p4", name: "Legacy Storage Jar", price: "$95", imageSrc: "http://img.b2bpic.net/free-photo/preparing-sake-japanese-beverage_23-2150158652.jpg"},
{
id: "p5", name: "Classic Table Lamp", price: "$210", imageSrc: "http://img.b2bpic.net/free-photo/chopsticks_23-2148142575.jpg"},
{
id: "p6", name: "Crafted Wall Plaque", price: "$110", imageSrc: "http://img.b2bpic.net/free-photo/view-vintage-radio-station_23-2150315222.jpg"},
{ id: "p1", name: " margarita pizza", price: "450 Birr ", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3E7Z9STHMq8QSEMRAU508L80fwX/uploaded-1779560736017-u9jbdjfr.png" },
{ id: "p2", name: "Traditional Serving Tray", price: "800 Birr ", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3E7Z9STHMq8QSEMRAU508L80fwX/uploaded-1779533268804-d4p4bfll.png" },
{ id: "p3", name: "special burger", price: "380 Birr ", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3E7Z9STHMq8QSEMRAU508L80fwX/uploaded-1779559628804-2y4y5syx.png" },
]}
title="Our Signature Collection"
description="Each item is a masterpiece of traditional design, refined for modern living."
title="Our Signature Food Menu"
description="Taste the tradition. Our menu features locally sourced ingredients prepared with timeless techniques."
/>
</div>
@@ -163,15 +115,9 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={true}
metrics={[
{
id: "m1", title: "Regions Served", value: "45", icon: Globe,
},
{
id: "m2", title: "Partners", value: "500", icon: Users,
},
{
id: "m3", title: "Awards", value: "120", icon: Award,
},
{ id: "m1", title: "Regions Served", value: "45", icon: Globe },
{ id: "m2", title: "Partners", value: "500", icon: Users },
{ id: "m3", title: "", value: "120", icon: Award },
]}
title="Built on Trust"
description="Our numbers speak for themselves, built over six decades of dedicated service."
@@ -182,19 +128,12 @@ export default function LandingPage() {
<TestimonialCardTwelve
useInvertedBackground={false}
testimonials={[
{
id: "t1", name: "Evelyn Reed", imageSrc: "http://img.b2bpic.net/free-photo/elegant-woman-with-lemons-limes_155996-4.jpg"},
{
id: "t2", name: "Arthur Vance", imageSrc: "http://img.b2bpic.net/free-photo/woman-religious-pilgrimage-church_23-2150582369.jpg"},
{
id: "t3", name: "Sarah Miller", imageSrc: "http://img.b2bpic.net/free-photo/portrait-person-football-game_23-2149015523.jpg"},
{
id: "t4", name: "Thomas Blake", imageSrc: "http://img.b2bpic.net/free-photo/joyful-lady-jacket-white-pants-smiling-outside-lovely-woman-with-bright-lips-eyeglasses-outdoors_197531-19337.jpg"},
{
id: "t5", name: "Grace Kim", imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-shopping-buying-consumer-goods_23-2151669840.jpg"},
{ id: "t1", name: "Evelyn Reed, Collector", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3E7Z9STHMq8QSEMRAU508L80fwX/uploaded-1779559416507-ii7m2n69.png" },
{ id: "t2", name: "Arthur Vance, Artisan Fan", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3E7Z9STHMq8QSEMRAU508L80fwX/uploaded-1779559309947-qprc5brd.png" },
{ id: "t3", name: "Sarah Miller, Interior Designer", imageSrc: "https://img.b2bpic.net/premium-photo/portrait-gorgeous-model-adult-woman-with-bright-makeup-green-eyes-wearing-modish-hat-leather-jacket_179135-2344.jpg?id=11835838" }
]}
cardTitle="Words from Our Collectors"
cardTag="Testimonials"
cardTitle="What Our Patrons Say"
cardTag="Reviews"
cardAnimation="blur-reveal"
/>
</div>
@@ -203,14 +142,12 @@ export default function LandingPage() {
<FaqSplitText
useInvertedBackground={true}
faqs={[
{
id: "q1", title: "Do you ship globally?", content: "Yes, we ship our traditional crafts worldwide."},
{
id: "q2", title: "How is it made?", content: "Using authentic techniques developed in 1960."},
{
id: "q3", title: "Can I request custom work?", content: "Please contact us for custom artisan inquiries."},
{ id: "q1", title: "Do you offer dinner reservations?", content: "Yes, you can reserve a table via our contact section." },
{ id: "q2", title: "What are your opening hours?", content: "We are open Tuesday through Sunday, 5:00 PM to 10:00 PM." },
{ id: "q3", title: "Do you cater private events?", content: "Absolutely, our restaurant hosts private gatherings for up to 50 guests." },
{ id: "q4", title: "Is there a dress code?", content: "We recommend smart-casual attire for a delightful dining experience." }
]}
sideTitle="Common Questions"
sideTitle="Dining Queries"
faqsAnimation="blur-reveal"
/>
</div>
@@ -218,11 +155,10 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={false}
background={{
variant: "radial-gradient"}}
tag="Stay Connected"
title="Join Our Heritage Circle"
description="Sign up for updates on new artisan collections and heritage stories."
background={{ variant: "radial-gradient" }}
tag="Reservations"
title="Book Your Experience"
description="Contact us at (555) 196-0196 or email reservations@lantika1960.com to secure your table today."
/>
</div>
@@ -231,27 +167,24 @@ export default function LandingPage() {
logoText="Lantika 1960"
columns={[
{
title: "Company", items: [
{
label: "About Us", href: "#about"},
{
label: "Heritage", href: "#"},
title: "Restaurant", items: [
{ label: "Our Heritage", href: "#about" },
{ label: "The Menu", href: "#products" },
{ label: "Reservations", href: "#contact" }
],
},
{
title: "Products", items: [
{
label: "Catalog", href: "#products"},
{
label: "Shop", href: "#"},
title: "Info", items: [
{ label: "123 Culinary St, Craft City", href: "#" },
{ label: "info@lantika1960.com", href: "mailto:info@lantika1960.com" },
{ label: "(555) 196-0196", href: "tel:+15551960196" }
],
},
{
title: "Support", items: [
{
label: "Contact", href: "#contact"},
{
label: "FAQ", href: "#faq"},
{ label: "FAQ", href: "#faq" },
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" }
],
},
]}
@@ -260,4 +193,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

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

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #f5f4ef;
--card: #dad6cd;
--foreground: #2a2928;
--primary-cta: #2a2928;
--primary-cta-text: #f5f4ef;
--secondary-cta: #ecebea;
--secondary-cta-text: #2a2928;
--accent: #ffffff;
--background-accent: #c6b180;
--background: #f6f0e9;
--card: #efe7dd;
--foreground: #2b180a;
--primary-cta: #2b180a;
--primary-cta-text: #f6f0e9;
--secondary-cta: #efe7dd;
--secondary-cta-text: #2b180a;
--accent: #94877c;
--background-accent: #afa094;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);