Compare commits

..

7 Commits

Author SHA1 Message Date
95e7d0f62e Update src/app/page.tsx 2026-04-17 00:54:08 +00:00
54d1918a8a Merge version_4 into main
Merge version_4 into main
2026-04-17 00:53:02 +00:00
b435f9c7f1 Update src/app/styles/base.css 2026-04-17 00:52:59 +00:00
44bf9d2b47 Update src/app/page.tsx 2026-04-17 00:52:58 +00:00
434b587e65 Update src/app/layout.tsx 2026-04-17 00:52:58 +00:00
7de3e021e5 Merge version_3 into main
Merge version_3 into main
2026-04-17 00:52:31 +00:00
6eb0943155 Merge version_3 into main
Merge version_3 into main
2026-04-17 00:51:13 +00:00
3 changed files with 9 additions and 13 deletions

View File

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

View File

@@ -186,7 +186,7 @@ export default function LandingPage() {
text="Come Try Lubbocks Favorite Croissants. Fresh pastries, great coffee, and a café youll want to come back to."
buttons={[
{
text: "Visit Us Today", href: "#"},
text: "Get Directions", href: "#"},
{
text: "Call Now", href: "tel:8067771229"},
]}
@@ -225,4 +225,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-inter), sans-serif;
font-family: var(--font-figtree), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-libre-baskerville), serif;
font-family: var(--font-figtree), serif;
}