6 Commits

Author SHA1 Message Date
96ab4b3fd9 Update src/app/page.tsx 2026-04-24 15:03:06 +00:00
4aaf0c5e0e Update src/app/page.tsx 2026-04-24 15:00:45 +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
09517f483a Update theme fonts 2026-04-24 14:57:21 +00:00
51399ec902 Update theme fonts 2026-04-24 14:57:21 +00:00
3 changed files with 11 additions and 7 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

@@ -47,7 +47,7 @@ export default function LandingPage() {
title="Sinner Smash Society" title="Sinner Smash Society"
description="Lisbon's most rebellious smash burger destination. Where hedonistic taste meets the concrete jungle." description="Lisbon's most rebellious smash burger destination. Where hedonistic taste meets the concrete jungle."
buttons={[{ text: "Order Now", href: "https://glovoapp.com" }, { text: "Reserve", href: "#contact" }]} buttons={[{ text: "Order Now", href: "https://glovoapp.com" }, { text: "Reserve", href: "#contact" }]}
imageSrc="https://img.b2bpic.net/free-photo/gourmet-burger-with-fries-dark-background_23-2148469878.jpg" imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CoAg7Gpp45ZgrdDE5qcmlAKPj3/uploaded-1777042791687-clkkqemp.jpg"
mediaAnimation="blur-reveal" mediaAnimation="blur-reveal"
/> />
</div> </div>
@@ -62,7 +62,7 @@ export default function LandingPage() {
{ value: "07", title: "Days Open" }, { value: "07", title: "Days Open" },
{ value: "24h", title: "Available" }, { value: "24h", title: "Available" },
]} ]}
imageSrc="https://img.b2bpic.net/free-photo/chef-cooking-burger-grill_23-2149177112.jpg" imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CoAg7Gpp45ZgrdDE5qcmlAKPj3/uploaded-1777042977777-fw2yrsvi.jpg"
/> />
</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;
} }