Compare commits
19 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 07c7fb8f74 | |||
| df9dc3b692 | |||
| 9e93688392 | |||
| 9d8eced023 | |||
| e810529343 | |||
| d6d2347a8c | |||
| 3d1a5fb675 | |||
| 84d5cc4f26 | |||
| d6c069c9e6 | |||
| 56a1e93009 | |||
| f3bb0e696a | |||
| 4640612a7d | |||
| aaca64396a | |||
| 8e4fb6f134 | |||
| 39f8352fab | |||
| 63ee46b806 | |||
| 593bcc322f | |||
| 0dcdb694d1 | |||
| 40bdf96dcc |
@@ -7,6 +7,9 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
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"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
|
||||
export default function RootLayout({
|
||||
@@ -34,7 +39,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${interTight.variable} antialiased`}>
|
||||
<body className={`${montserrat.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -44,14 +44,14 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCarouselLogo
|
||||
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" }]}
|
||||
slides={[
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/mime-reading-manuscript-stage-empty-auditorium_23-2147891800.jpg", 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: "http://img.b2bpic.net/free-photo/world-theatre-day-celebration_23-2151185647.jpg", 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: "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-1776399630253-zzerdmm7.webp", 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: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CGeS6LDJVrs0TROxxJC5H8vn5O/uploaded-1776399756060-lipa6eav.webp", 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: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CGeS6LDJVrs0TROxxJC5H8vn5O/uploaded-1776399725636-vv7oxr45.webp", imageAlt: "modern performing arts theater stage" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-inter-tight), sans-serif;
|
||||
font-family: var(--font-montserrat), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-inter-tight), sans-serif;
|
||||
font-family: var(--font-montserrat), sans-serif;
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #f5f5f5;
|
||||
--card: #ffffff;
|
||||
--foreground: #1c1c1c;
|
||||
--primary-cta: #1f514c;
|
||||
--primary-cta-text: #f5f5f5;
|
||||
--secondary-cta: #ffffff;
|
||||
--secondary-cta-text: #1c1c1c;
|
||||
--accent: #159c49;
|
||||
--background-accent: #a8e8ba;
|
||||
--background: #ffffff;
|
||||
--card: #f9f9f9;
|
||||
--foreground: #000612e6;
|
||||
--primary-cta: #15479c;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #f9f9f9;
|
||||
--secondary-cta-text: #000612e6;
|
||||
--accent: #e2e2e2;
|
||||
--background-accent: #c4c4c4;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user