4 Commits

Author SHA1 Message Date
8a107aa232 Update src/app/page.tsx 2025-12-23 12:33:03 +00:00
ec5b0d65e2 Update src/app/globals.css 2025-12-23 12:18:51 +00:00
47a820e80e Update src/app/globals.css 2025-12-23 12:16:55 +00:00
d62d20d66e Update src/app/page.tsx 2025-12-23 12:14:14 +00:00
2 changed files with 44 additions and 17 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */
/* --vw is set by ThemeProvider */
--background: #f5faff;
--card: #f1f8ff;
--foreground: #001122;
--primary-cta: #15479c;
--background: #f8fcff;
--card: #ffffff;
--foreground: #00101f;
--primary-cta: #409fff;
--secondary-cta: #ffffff;
--accent: #a8cce8;
--background-accent: #7ba3cf;
--accent: #c7e2fc;
--background-accent: #9bcfff;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);

View File

@@ -7,7 +7,7 @@ import AboutMetric from '@/components/sections/about/AboutMetric';
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import TeamCardOne from '@/components/sections/team/TeamCardOne';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import { Users, Archive, Clock, Globe } from "lucide-react";
@@ -143,16 +143,43 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactSplit
tag="Get In Touch"
title="Plan Your Visit"
description="Subscribe to our newsletter for updates on new exhibits, events, and special programming. Learn more about visiting the museum."
inputPlaceholder="Enter your email"
buttonText="Subscribe"
termsText="We respect your privacy. Unsubscribe anytime. Never spam."
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766491405102-xhgohwgr.jpg"
imageAlt="Museum Entrance and Main Building"
mediaPosition="right"
<TeamCardOne
title="Meet Our Team"
description="The dedicated professionals preserving and sharing World War II history"
tag="Our Team"
members={[
{
id: "1",
name: "Dr. James Morrison",
role: "Museum Director",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766493180997-hacq0ksm.jpg",
imageAlt: "Portrait of Dr. James Morrison"
},
{
id: "2",
name: "Sarah Chen",
role: "Curator",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766491406561-8cuqlxny.jpg",
imageAlt: "Portrait of Sarah Chen"
},
{
id: "3",
name: "Robert Williams",
role: "Education Manager",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766491407154-2lkb6b2p.jpg",
imageAlt: "Portrait of Robert Williams"
},
{
id: "4",
name: "Emily Roberts",
role: "Archives Specialist",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766491407821-hzwtbrsg.jpg",
imageAlt: "Portrait of Emily Roberts"
}
]}
textboxLayout="default"
animationType="slide-up"
gridVariant="uniform-all-items-equal"
useInvertedBackground="noInvert"
/>
</div>