45 Commits

Author SHA1 Message Date
e5a274b856 Merge version_4 into main
Merge version_4 into main
2026-04-24 15:03:10 +00:00
96ab4b3fd9 Update src/app/page.tsx 2026-04-24 15:03:06 +00:00
0de12d2943 Merge version_4 into main
Merge version_4 into main
2026-04-24 15:00:48 +00:00
4aaf0c5e0e Update src/app/page.tsx 2026-04-24 15:00:45 +00:00
82dddab387 Merge version_4 into main
Merge version_4 into main
2026-04-24 14:57:39 +00:00
7d47676364 Update theme fonts 2026-04-24 14:57:36 +00:00
bc00594653 Update theme fonts 2026-04-24 14:57:35 +00:00
08c490cf55 Merge version_4 into main
Merge version_4 into main
2026-04-24 14:57:25 +00:00
09517f483a Update theme fonts 2026-04-24 14:57:21 +00:00
51399ec902 Update theme fonts 2026-04-24 14:57:21 +00:00
078c07dcbc Switch to version 4: modified src/app/page.tsx 2026-04-24 14:55:13 +00:00
4bdc9575e8 Switch to version 3: modified src/app/page.tsx 2026-04-24 14:55:09 +00:00
151f9268d2 Switch to version 4: modified src/app/styles/variables.css 2026-04-24 14:55:06 +00:00
c2de3184b8 Switch to version 5: modified src/app/styles/variables.css 2026-04-24 14:55:04 +00:00
d313f6eeb4 Switch to version 6: modified src/app/styles/variables.css 2026-04-24 14:55:01 +00:00
3164bbc149 Switch to version 7: modified src/app/styles/variables.css 2026-04-24 14:54:58 +00:00
507840ffb2 Switch to version 8: modified src/app/styles/variables.css 2026-04-24 14:54:55 +00:00
1fa07e788d Switch to version 9: modified src/app/styles/variables.css 2026-04-24 14:54:52 +00:00
2658799ee4 Switch to version 10: modified src/app/styles/variables.css 2026-04-24 14:54:49 +00:00
a86ea2e427 Switch to version 11: modified src/app/styles/variables.css 2026-04-24 14:54:43 +00:00
4872ce4d9b Switch to version 12: modified src/app/styles/variables.css 2026-04-24 14:54:37 +00:00
c43eadfe80 Switch to version 13: modified src/app/styles/variables.css 2026-04-24 14:54:35 +00:00
23e312d464 Merge version_14 into main
Merge version_14 into main
2026-04-24 14:53:29 +00:00
c0315b00b7 Update theme colors 2026-04-24 14:53:23 +00:00
a003ddb56f Merge version_13 into main
Merge version_13 into main
2026-04-24 14:53:16 +00:00
e4cb27e9ab Update theme colors 2026-04-24 14:53:10 +00:00
19543e22e7 Merge version_12 into main
Merge version_12 into main
2026-04-24 14:52:57 +00:00
669d8615ed Update theme colors 2026-04-24 14:52:54 +00:00
98fc54be2d Merge version_11 into main
Merge version_11 into main
2026-04-24 14:52:40 +00:00
9c2374d506 Update theme colors 2026-04-24 14:52:37 +00:00
c27ef67564 Merge version_10 into main
Merge version_10 into main
2026-04-24 14:51:37 +00:00
040c685272 Update theme colors 2026-04-24 14:51:34 +00:00
708da8cc05 Merge version_9 into main
Merge version_9 into main
2026-04-24 14:51:29 +00:00
10664568de Update theme colors 2026-04-24 14:51:26 +00:00
da190743dd Merge version_8 into main
Merge version_8 into main
2026-04-24 14:51:20 +00:00
09bd0c22be Update theme colors 2026-04-24 14:51:17 +00:00
b9e64d57c4 Merge version_7 into main
Merge version_7 into main
2026-04-24 14:51:04 +00:00
c221ccaa9d Update theme colors 2026-04-24 14:51:01 +00:00
9de39162a7 Merge version_6 into main
Merge version_6 into main
2026-04-24 14:50:54 +00:00
8fadaa4d17 Update theme colors 2026-04-24 14:50:50 +00:00
3b5b926e1f Merge version_5 into main
Merge version_5 into main
2026-04-24 14:50:49 +00:00
bc64a5c1d4 Update theme colors 2026-04-24 14:50:46 +00:00
74e9069a23 Merge version_4 into main
Merge version_4 into main
2026-04-24 14:48:55 +00:00
73b8c260d4 Update src/app/page.tsx 2026-04-24 14:48:52 +00:00
52d57e16ed Merge version_2 into main
Merge version_2 into main
2026-04-24 14:43:37 +00:00
3 changed files with 51 additions and 156 deletions

View File

@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script"; import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Source_Sans_3 } from "next/font/google"; import { Source_Sans_3 } from "next/font/google";
import { Roboto } from "next/font/google";
@@ -18,9 +19,12 @@ export const metadata: Metadata = {
}, },
}; };
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3",
const roboto = Roboto({
variable: "--font-roboto",
subsets: ["latin"], subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
}); });
export default function RootLayout({ export default function RootLayout({
@@ -31,7 +35,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${sourceSans3.variable} antialiased`}> <body className={`${roboto.variable} antialiased`}>
<Tag /> <Tag />
{children} {children}
<script <script

View File

@@ -31,74 +31,38 @@ export default function LandingPage() {
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleFullscreen <NavbarStyleFullscreen
navItems={[ navItems={[
{ { name: "The Experience", id: "about" },
name: "The Experience", id: "about"}, { name: "The Menu", id: "product" },
{ { name: "Location", id: "features" },
name: "The Menu", id: "product"}, { name: "Membership", id: "pricing" },
{ { name: "Confess", id: "contact" },
name: "Membership", id: "pricing"},
{
name: "Confess", id: "contact"},
]} ]}
brandName="THE SINNER" brandName="SINNER SMASH SOCIETY"
/> />
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroBillboard <HeroBillboard
background={{ background={{ variant: "plain" }}
variant: "plain"}} title="Sinner Smash Society"
title="Enter the Underworld" description="Lisbon's most rebellious smash burger destination. Where hedonistic taste meets the concrete jungle."
description="Lisbon's most exclusive, unapologetic supper club for those who feed on desire and shadow." buttons={[{ text: "Order Now", href: "https://glovoapp.com" }, { text: "Reserve", href: "#contact" }]}
buttons={[ imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CoAg7Gpp45ZgrdDE5qcmlAKPj3/uploaded-1777042791687-clkkqemp.jpg"
{
text: "Request Your Invitation", href: "#contact"},
]}
imageSrc="http://img.b2bpic.net/free-photo/beautiful-modern-decoration-inside-building-with-escalators-brussels-belgium_181624-43247.jpg"
mediaAnimation="blur-reveal" mediaAnimation="blur-reveal"
avatars={[
{
src: "http://img.b2bpic.net/free-photo/stunning-chinese-environment-landscape_23-2151918971.jpg", alt: "Stunning chinese environment landscape"},
{
src: "http://img.b2bpic.net/free-photo/front-view-woman-putting-lipstick_23-2149445852.jpg", alt: "Front view woman putting on lipstick"},
{
src: "http://img.b2bpic.net/free-photo/cinematic-film-location-decor_23-2151918995.jpg", alt: "Cinematic film location decor"},
{
src: "http://img.b2bpic.net/free-photo/unfocused-entry-disco-colors_1208-247.jpg", alt: "Unfocused entry disco colors"},
{
src: "http://img.b2bpic.net/free-photo/elegant-black-minimal-interior-design_23-2151913265.jpg", alt: "Elegant black minimal interior design"},
]}
marqueeItems={[
{
type: "text", text: "DISCREET"},
{
type: "text", text: "UNAPOLOGETIC"},
{
type: "text", text: "HEDONISTIC"},
{
type: "text", text: "EXCLUSIVE"},
{
type: "text", text: "LISBON"},
]}
/> />
</div> </div>
<div id="about" data-section="about"> <div id="about" data-section="about">
<MetricSplitMediaAbout <MetricSplitMediaAbout
useInvertedBackground={false} useInvertedBackground={false}
title="A Ritual of Excess" title="The Art of the Smash"
description="We don't serve dinner; we serve confessions. The Sinner is an editorialized dining escape where the line between pleasure and sin is blurred by candlelight and velvet." description="We smash our patties at high pressure to lock in every drop of flavor. Our secret sauce is the only sin you'll want to commit."
metrics={[ metrics={[
{ { value: "100%", title: "Angus Beef" },
value: "12", title: "Secret Seats"}, { value: "07", title: "Days Open" },
{ { value: "24h", title: "Available" },
value: "04", title: "AM Closing"},
{
value: "∞", title: "Sins Cleansed"},
]} ]}
imageSrc="http://img.b2bpic.net/free-photo/hand-plate-with-fish-cooked-fish-juicy-fish-plate-delicacy-seafood-lovers_639032-339.jpg" imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CoAg7Gpp45ZgrdDE5qcmlAKPj3/uploaded-1777042977777-fw2yrsvi.jpg"
mediaAnimation="slide-up"
metricsAnimation="slide-up"
/> />
</div> </div>
@@ -108,21 +72,12 @@ export default function LandingPage() {
textboxLayout="split" textboxLayout="split"
useInvertedBackground={false} useInvertedBackground={false}
features={[ features={[
{ { id: "1", label: "Hours", title: "Open Daily", items: ["Mon-Thu: 12:00 - 00:00", "Fri-Sun: 12:00 - 02:00"] },
id: "1", label: "Vibe", title: "Neon Drenched", items: [ { id: "2", label: "Location", title: "Find Us", items: ["Rua do Sinner, 12", "Lisbon, Portugal"] },
"Deep charcoal palette", "Molten orange lighting", "Rough textures"], { id: "3", label: "Order", title: "Delivery", items: ["Available on Glovo", "Available on Uber Eats"] },
},
{
id: "2", label: "Ritual", title: "Strict Privacy", items: [
"No phones permitted", "No photography allowed", "Total digital silence"],
},
{
id: "3", label: "Taste", title: "Raw & Real", items: [
"Authentic ingredients", "Unapologetic seasoning", "Chef's table rituals"],
},
]} ]}
title="The Sinner Code" title="The Sinner Society"
description="Rules of engagement for those daring to step inside our night-lit lair." description="Find us in the heart of Lisbon for a truly unholy smash burger experience."
/> />
</div> </div>
@@ -133,27 +88,11 @@ export default function LandingPage() {
gridVariant="bento-grid" gridVariant="bento-grid"
useInvertedBackground={false} useInvertedBackground={false}
products={[ products={[
{ { id: "p1", brand: "Sinner", name: "The Original Sin", price: "€12", rating: 5, reviewCount: "400", imageSrc: "https://img.b2bpic.net/free-photo/delicious-burger-with-cheese_23-2148469878.jpg" },
id: "p1", brand: "Signature", name: "Molten Heart", price: "€45", rating: 5, { id: "p2", brand: "Sinner", name: "Spicy Devil", price: "€14", rating: 5, reviewCount: "250", imageSrc: "https://img.b2bpic.net/free-photo/burger-with-spicy-sauce_23-2148469878.jpg" },
reviewCount: "128", imageSrc: "http://img.b2bpic.net/free-photo/top-view-scoop-ice-cream-with-flowers_23-2148425550.jpg"},
{
id: "p2", brand: "Signature", name: "Forbidden Fruit", price: "€38", rating: 5,
reviewCount: "92", imageSrc: "http://img.b2bpic.net/free-photo/lamb-chicken-burger-without-top-bun-with-mushroom-herbs-tomato-sauce_140725-8320.jpg"},
{
id: "p3", brand: "Signature", name: "Velvet Nectar", price: "€22", rating: 4,
reviewCount: "210", imageSrc: "http://img.b2bpic.net/free-photo/cocktail-refreshment-neo-futuristic-style_23-2151370286.jpg"},
{
id: "p4", brand: "Chef's Pick", name: "Charred Shadow", price: "€55", rating: 5,
reviewCount: "77", imageSrc: "http://img.b2bpic.net/free-photo/butcher-pepper-tied-piece-steak-meat-smoke-closeup_346278-622.jpg"},
{
id: "p5", brand: "Signature", name: "Neon Tartare", price: "€42", rating: 5,
reviewCount: "54", imageSrc: "http://img.b2bpic.net/free-photo/sauteed-roasted-lamb-bone-served-teriyaki-sauce_114579-1895.jpg"},
{
id: "p6", brand: "Chef's Pick", name: "Gilded Sin", price: "€60", rating: 5,
reviewCount: "43", imageSrc: "http://img.b2bpic.net/free-photo/black-rice-with-peeled-orange_23-2148469878.jpg"},
]} ]}
title="The Midnight Menu" title="Our Menu"
description="A curated selection of our most intoxicating dishes." description="The ultimate smash burger menu for those who crave the bold."
/> />
</div> </div>
@@ -163,33 +102,10 @@ export default function LandingPage() {
textboxLayout="split" textboxLayout="split"
useInvertedBackground={false} useInvertedBackground={false}
plans={[ plans={[
{ { id: "basic", price: "€15", name: "The Standard Feast", buttons: [{ text: "Order Glovo", href: "https://glovoapp.com" }], features: ["Double Patty", "Secret Sauce", "Extra Cheese"] },
id: "basic", price: "€150", name: "Confessional Pass", features: [
"1 dinner entry", "1 cocktail", "Priority queue"],
buttons: [
{
text: "Apply Now", href: "#contact"},
],
},
{
id: "pro", price: "€450", name: "Sinner Tier", features: [
"Unlimited entries", "Chef table access", "Priority booking"],
buttons: [
{
text: "Apply Now", href: "#contact"},
],
},
{
id: "vip", price: "€900", name: "Godfather Tier", features: [
"VIP private booth", "Full menu access", "Concierge"],
buttons: [
{
text: "Apply Now", href: "#contact"},
],
},
]} ]}
title="Join the Inner Circle" title="Membership Perks"
description="Membership is required for entry to the most exclusive table in Lisbon." description="Unlock exclusive deals by joining the Sinner Smash Society."
/> />
</div> </div>
@@ -199,19 +115,10 @@ export default function LandingPage() {
textboxLayout="split" textboxLayout="split"
useInvertedBackground={false} useInvertedBackground={false}
testimonials={[ testimonials={[
{ { id: "t1", name: "Gonçalo R.", role: "Local Critic", testimonial: "The best smash burger in Lisbon, hands down.", imageSrc: "https://img.b2bpic.net/free-photo/happy-customer-eating-burger_23-2149177112.jpg" },
id: "t1", name: "Elena V.", role: "Collector", testimonial: "The best night of my life, Lisbon will never be the same.", imageSrc: "http://img.b2bpic.net/free-photo/spotlight-portrait-golden-hour_23-2151915110.jpg"},
{
id: "t2", name: "Marco D.", role: "Architect", testimonial: "Dark, moody, utterly intoxicating. The Sinner is pure art.", imageSrc: "http://img.b2bpic.net/free-photo/young-smiling-brunette-bearded-businessman-with-glass-red-wine-happily-talking-cellphone-restaurant-outdoor_574295-1297.jpg"},
{
id: "t3", name: "Sara L.", role: "Art Dealer", testimonial: "Finally, a place that doesn't care for polite conversation.", imageSrc: "http://img.b2bpic.net/free-photo/man-smoke-electronic-cigarette-vape-shop-vape-bar_639032-331.jpg"},
{
id: "t4", name: "Julian B.", role: "Critic", testimonial: "Irreverent, unapologetic, and delicious. My new obsession.", imageSrc: "http://img.b2bpic.net/free-photo/woman-working-computer-drinking-coffee_1303-27379.jpg"},
{
id: "t5", name: "Sofia R.", role: "Designer", testimonial: "I've never felt so alive at dinner. The vibe is unmatched.", imageSrc: "http://img.b2bpic.net/free-photo/stylish-smiling-woman-retro-vintage-american-50-s-cafe-sitting-table_285396-10499.jpg"},
]} ]}
title="Confessions from the Table" title="Society Confessions"
description="What they whispered after the candles burned out." description="What our loyal members are saying."
/> />
</div> </div>
@@ -219,44 +126,28 @@ export default function LandingPage() {
<SocialProofOne <SocialProofOne
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
names={[ names={["Instagram", "TikTok", "Facebook", "TripAdvisor"]}
"Vogue", "GQ Portugal", "Condé Nast", "Wallpaper*", "Hypebeast", "Eater", "Lisbon Lifestyle"]} title="Join the Society"
title="Seen In" description="Follow us for daily specials and exclusive drops."
description="The press that dared to cover our secret nights."
/> />
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactCenter <ContactCenter
useInvertedBackground={false} useInvertedBackground={false}
background={{ background={{ variant: "plain" }}
variant: "plain"}} title="Stay Updated"
title="Beg for Access" description="Join the society and never miss a drop."
description="Membership is limited. Sign up to receive a notification for the next reservation window." tag="Newsletter"
tag="Entry Request"
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBaseCard <FooterBaseCard
logoText="THE SINNER" logoText="SINNER SMASH SOCIETY"
columns={[ columns={[
{ { title: "Navigation", items: [{ label: "Home", href: "#" }, { label: "Menu", href: "#product" }] },
title: "Company", items: [ { title: "Follow Us", items: [{ label: "Instagram", href: "#" }, { label: "TikTok", href: "#" }] },
{
label: "About", href: "#about"},
{
label: "Manifesto", href: "#"},
],
},
{
title: "Legal", items: [
{
label: "Privacy", href: "#"},
{
label: "Terms", href: "#"},
],
},
]} ]}
/> />
</div> </div>

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-source-sans-3), sans-serif; font-family: var(--font-roboto), 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-source-sans-3), sans-serif; font-family: var(--font-roboto), sans-serif;
} }