Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| af44fb8d29 | |||
| 318e9f7470 | |||
| 59e12a2f8c | |||
| 221f9a6186 | |||
| 0196b256e9 | |||
| b43fd46645 | |||
| ca008923cf | |||
| 5613d8cd37 | |||
| 553a65c8e5 |
@@ -7,6 +7,9 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Roboto } from "next/font/google";
|
||||
import { Nunito_Sans } from "next/font/google";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
import { Libre_Baskerville } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
@@ -20,10 +23,17 @@ export const metadata: Metadata = {
|
||||
},
|
||||
};
|
||||
|
||||
const roboto = Roboto({
|
||||
variable: "--font-roboto",
|
||||
|
||||
|
||||
|
||||
const libreBaskerville = Libre_Baskerville({
|
||||
variable: "--font-libre-baskerville",
|
||||
subsets: ["latin"],
|
||||
weight: ["400", "700"],
|
||||
});
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
weight: ["100", "300", "400", "500", "700", "900"],
|
||||
});
|
||||
|
||||
export default function RootLayout({
|
||||
@@ -34,7 +44,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${roboto.variable} antialiased`}>
|
||||
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -44,9 +44,9 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardScroll
|
||||
background={{
|
||||
variant: "radial-gradient"}}
|
||||
variant: "sparkles-gradient"}}
|
||||
title="NYC's Warmest Coffee Ritual"
|
||||
description="Specialty espresso, homemade almond milk, and unforgettable brunch moments."
|
||||
description="Specialty espresso, homemade almond milk, and interactive 3D coffee moments."
|
||||
buttons={[
|
||||
{
|
||||
text: "Explore Menu", href: "#menu"},
|
||||
@@ -62,7 +62,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
heading={[
|
||||
{
|
||||
type: "text", content: "A tiny, cozy NYC coffee shop experience in the heart of Midtown."},
|
||||
type: "text", content: "A tiny, cozy NYC coffee shop experience with interactive 3D elements."},
|
||||
{
|
||||
type: "image", src: "http://img.b2bpic.net/free-photo/empty-cafe-street-terrace-with-chairs-tables-guests_501050-570.jpg", alt: "Lucid Cafe Interior"},
|
||||
]}
|
||||
@@ -95,8 +95,8 @@ export default function LandingPage() {
|
||||
id: "6", brand: "Extra", name: "Almond Milk", price: "$1.50", rating: 5,
|
||||
reviewCount: "42", imageSrc: "http://img.b2bpic.net/free-photo/almond-milk-with-almond-wooden-bowl-black-background_1150-37676.jpg"},
|
||||
]}
|
||||
title="Holographic Menu"
|
||||
description="Select from our premium selection of specialty coffee and brunch favorites."
|
||||
title="Interactive 3D Treats"
|
||||
description="Drag, drop, and enjoy our premium selection of specialty coffee and brunch favorites."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -156,7 +156,7 @@ export default function LandingPage() {
|
||||
{
|
||||
id: "m2", value: "Midtown", title: "3D Map View", description: "311 Lexington Ave (3D Location)", imageSrc: "http://img.b2bpic.net/free-photo/manhattan-streets-aerial-view_1150-13426.jpg"},
|
||||
{
|
||||
id: "m3", value: "Fresh", title: "Ritual", description: "Coffee served hot", imageSrc: "http://img.b2bpic.net/free-vector/flat-design-cafe-signage-design_23-2149295822.jpg"},
|
||||
id: "m3", value: "Fresh", title: "Ritual", description: "Coffee served hot", imageSrc: "http://img.b2bpic.net/free-photo/flat-design-cafe-signage-design_23-2149295822.jpg"},
|
||||
]}
|
||||
title="Visit Lucid Cafe"
|
||||
description="311 Lexington Ave, New York, NY"
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-roboto), 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-roboto), sans-serif;
|
||||
font-family: var(--font-libre-baskerville), serif;
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #f6f0e9;
|
||||
--card: #efe7dd;
|
||||
--foreground: #2b180a;
|
||||
--primary-cta: #2b180a;
|
||||
--primary-cta-text: #0a0a0a;
|
||||
--secondary-cta: #efe7dd;
|
||||
--secondary-cta-text: #fffaf5e6;
|
||||
--accent: #94877c;
|
||||
--background-accent: #afa094;
|
||||
--background: #fdfaf6;
|
||||
--card: #f0e6da;
|
||||
--foreground: #3d2b1f;
|
||||
--primary-cta: #6f4e37;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #f0e6da;
|
||||
--secondary-cta-text: #3d2b1f;
|
||||
--accent: #b88a6d;
|
||||
--background-accent: #e6d5c5;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user