Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| df9dc3b692 | |||
| 9e93688392 | |||
| e810529343 | |||
| d6d2347a8c | |||
| 84d5cc4f26 | |||
| 56a1e93009 | |||
| f3bb0e696a | |||
| aaca64396a | |||
| 39f8352fab |
@@ -7,6 +7,9 @@ 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 { Inter_Tight } from "next/font/google";
|
import { Inter_Tight } from "next/font/google";
|
||||||
|
import { Open_Sans } from "next/font/google";
|
||||||
|
import { Source_Sans_3 } from "next/font/google";
|
||||||
|
import { Montserrat } from "next/font/google";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -20,10 +23,12 @@ export const metadata: Metadata = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
const interTight = Inter_Tight({
|
|
||||||
variable: "--font-inter-tight",
|
|
||||||
|
|
||||||
|
const montserrat = Montserrat({
|
||||||
|
variable: "--font-montserrat",
|
||||||
subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
@@ -34,7 +39,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${interTight.variable} antialiased`}>
|
<body className={`${montserrat.variable} antialiased`}>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
|
|||||||
@@ -44,14 +44,14 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroCarouselLogo
|
<HeroCarouselLogo
|
||||||
logoText="Michael D. Palm Theatre"
|
logoText="Michael D. Palm Theatre"
|
||||||
description="Telluride's premier performing arts venue, home to beloved Palm Arts for over twenty years."
|
description="The Michael D. Palm Theatre in Telluride, Colorado is home to the beloved Palm Arts. For over twenty years, this 501(c)(3) nonprofit has been delighting audiences with a diverse array of performances including dance, theatre, opera and film. The Palm Arts complex is also home to the Bob Saunders “Black Box” Theatre and a professional dance studio. All of these spaces serve as a vibrant hub for artistic expression and collaboration, enriching and connecting the local community with a year-round calendar of events.."
|
||||||
buttons={[{ text: "View Upcoming Events", href: "#events" }]}
|
buttons={[{ text: "View Upcoming Events", href: "#events" }]}
|
||||||
slides={[
|
slides={[
|
||||||
{ imageSrc: "http://img.b2bpic.net/free-photo/mime-reading-manuscript-stage-empty-auditorium_23-2147891800.jpg", imageAlt: "modern performing arts theater stage" },
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CGeS6LDJVrs0TROxxJC5H8vn5O/uploaded-1776399630253-zzerdmm7.webp", imageAlt: "modern performing arts theater stage" },
|
||||||
{ imageSrc: "http://img.b2bpic.net/free-photo/retro-world-theatre-day-scenes_23-2151211410.jpg", imageAlt: "modern performing arts theater stage" },
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CGeS6LDJVrs0TROxxJC5H8vn5O/uploaded-1776399710230-rkmmfnjk.webp", imageAlt: "modern performing arts theater stage" },
|
||||||
{ imageSrc: "http://img.b2bpic.net/free-photo/world-theatre-day-celebration_23-2151185647.jpg", imageAlt: "modern performing arts theater stage" },
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CGeS6LDJVrs0TROxxJC5H8vn5O/uploaded-1776399756060-lipa6eav.webp", imageAlt: "modern performing arts theater stage" },
|
||||||
{ imageSrc: "http://img.b2bpic.net/free-photo/digital-art-inmersive-exhibition_23-2151428439.jpg", imageAlt: "modern performing arts theater stage" },
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CGeS6LDJVrs0TROxxJC5H8vn5O/uploaded-1776399686000-w32ep6jm.webp", imageAlt: "modern performing arts theater stage" },
|
||||||
{ imageSrc: "http://img.b2bpic.net/free-photo/female-mime-with-manuscript-sitting-stage_23-2147891799.jpg", imageAlt: "modern performing arts theater stage" }
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CGeS6LDJVrs0TROxxJC5H8vn5O/uploaded-1776399725636-vv7oxr45.webp", imageAlt: "modern performing arts theater stage" }
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -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-inter-tight), sans-serif;
|
font-family: var(--font-montserrat), 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-inter-tight), sans-serif;
|
font-family: var(--font-montserrat), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user