8 Commits

Author SHA1 Message Date
df9dc3b692 Update theme fonts 2026-04-17 04:27:54 +00:00
9e93688392 Update theme fonts 2026-04-17 04:27:54 +00:00
e810529343 Update theme fonts 2026-04-17 04:27:28 +00:00
d6d2347a8c Update theme fonts 2026-04-17 04:27:28 +00:00
84d5cc4f26 Update src/app/page.tsx 2026-04-17 04:26:47 +00:00
56a1e93009 Update theme fonts 2026-04-17 04:24:19 +00:00
f3bb0e696a Update theme fonts 2026-04-17 04:24:18 +00:00
aaca64396a Update theme colors 2026-04-17 04:17:31 +00:00
4 changed files with 20 additions and 15 deletions

View File

@@ -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

View File

@@ -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>

View File

@@ -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;
}

View File

@@ -12,11 +12,11 @@
--background: #ffffff;
--card: #f9f9f9;
--foreground: #000f06e6;
--primary-cta: #0a7039;
--foreground: #000612e6;
--primary-cta: #15479c;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #000f06e6;
--secondary-cta-text: #000612e6;
--accent: #e2e2e2;
--background-accent: #c4c4c4;