Compare commits
21 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 375e952de9 | |||
| 7e0448af63 | |||
| 91d16597fb | |||
| 7b34d61d64 | |||
| 6c41ac1b4d | |||
| f37aba41bd | |||
| 622940adde | |||
| 523463c4ab | |||
| 57108e3810 | |||
| ef486a35d5 | |||
| 8fb2d2f1f8 | |||
| 0f5aa4def9 | |||
| c9393e6745 | |||
| 423fa31e07 | |||
| 793740da69 | |||
| 75a0af4695 | |||
| e08148b309 | |||
| a9fd247161 | |||
| d1c22f7a3a | |||
| 4dbb33d481 | |||
| b106628e9c |
60
src/app/about/page.tsx
Normal file
60
src/app/about/page.tsx
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||||
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||||
|
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||||
|
|
||||||
|
export default function AboutPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="hover-bubble"
|
||||||
|
defaultTextAnimation="reveal-blur"
|
||||||
|
borderRadius="soft"
|
||||||
|
contentWidth="compact"
|
||||||
|
sizing="largeSmallSizeMediumTitles"
|
||||||
|
background="noiseDiagonalGradient"
|
||||||
|
cardStyle="gradient-mesh"
|
||||||
|
primaryButtonStyle="radial-glow"
|
||||||
|
secondaryButtonStyle="glass"
|
||||||
|
headingFontWeight="normal"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarStyleFullscreen
|
||||||
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "About", id: "about" },
|
||||||
|
{ name: "Project", id: "/details" },
|
||||||
|
{ name: "Donate", id: "/donate" },
|
||||||
|
{ name: "Contact", id: "/contact" },
|
||||||
|
]}
|
||||||
|
brandName="Mandir Eagle Project"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="about" data-section="about" style={{ marginTop: '100px' }}>
|
||||||
|
<MediaAbout
|
||||||
|
title="Saicharan's Bio & Mission"
|
||||||
|
description="As a dedicated Scout, Saicharan is driven by a passion for service and community impact. His mission for the SDSV Mandir is to create a safe, accessible, and welcoming environment that reflects the spirit and dedication of our community. Through this Eagle Scout project, he aims to leave a lasting footprint of safety and beauty that supports all devotees and visitors for years to come."
|
||||||
|
tag="Founder Profile"
|
||||||
|
imageSrc="http://img.b2bpic.net/free-photo/group-happy-diverse-volunteers_53876-20840.jpg?_wi=2"
|
||||||
|
useInvertedBackground={true}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterBaseReveal
|
||||||
|
logoText="SDSV Mandir Eagle Service Project"
|
||||||
|
columns={[
|
||||||
|
{ title: "Links", items: [{ label: "Home", href: "/" }, { label: "Donate", href: "/donate" }] },
|
||||||
|
{ title: "Support", items: [{ label: "Troop 424", href: "#" }, { label: "Contact", href: "/contact" }] }
|
||||||
|
]}
|
||||||
|
copyrightText="© 2024 Saicharan Kotturu"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
67
src/app/donate/page.tsx
Normal file
67
src/app/donate/page.tsx
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||||
|
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||||
|
import { Heart, Mail, Phone } from 'lucide-react';
|
||||||
|
|
||||||
|
export default function DonatePage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="hover-bubble"
|
||||||
|
defaultTextAnimation="reveal-blur"
|
||||||
|
borderRadius="soft"
|
||||||
|
contentWidth="compact"
|
||||||
|
sizing="largeSmallSizeMediumTitles"
|
||||||
|
background="noiseDiagonalGradient"
|
||||||
|
cardStyle="gradient-mesh"
|
||||||
|
primaryButtonStyle="radial-glow"
|
||||||
|
secondaryButtonStyle="glass"
|
||||||
|
headingFontWeight="normal"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<NavbarStyleFullscreen
|
||||||
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "About", id: "/about" },
|
||||||
|
{ name: "Project", id: "/details" },
|
||||||
|
{ name: "Donate", id: "/donate" },
|
||||||
|
{ name: "Contact", id: "/contact" },
|
||||||
|
]}
|
||||||
|
brandName="Mandir Eagle Project"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<main className="pt-32 pb-20 px-6 max-w-4xl mx-auto text-center">
|
||||||
|
<Heart className="w-16 h-16 mx-auto text-primary mb-6" />
|
||||||
|
<h1 className="text-4xl font-bold mb-6">Donate via Zelle</h1>
|
||||||
|
<p className="text-xl mb-8">Your support helps us complete this Eagle Scout service project. Please use the following details to contribute via Zelle:</p>
|
||||||
|
<div className="bg-card p-8 rounded-2xl shadow-lg border inline-block">
|
||||||
|
<p className="text-sm uppercase tracking-wider mb-2">Zelle Number</p>
|
||||||
|
<p className="text-3xl font-mono font-bold mb-4">678-982-1480</p>
|
||||||
|
<div className="group relative inline-flex items-center justify-center gap-2 cursor-pointer">
|
||||||
|
<Mail className="w-5 h-5" />
|
||||||
|
<span className="font-medium text-lg">Contact for Questions</span>
|
||||||
|
<span className="absolute bottom-full left-1/2 -translate-x-1/2 mb-2 px-3 py-1 bg-black text-white text-xs rounded opacity-0 group-hover:opacity-100 transition-opacity whitespace-nowrap">
|
||||||
|
saicharan.kotturu@gmail.com
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div className="flex items-center justify-center gap-2 mt-3 text-lg font-medium">
|
||||||
|
<Phone className="w-5 h-5" />
|
||||||
|
<span>346-387-2636</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<FooterBaseReveal
|
||||||
|
logoText="SDSV Mandir Eagle Service Project"
|
||||||
|
columns={[
|
||||||
|
{ title: "Links", items: [{ label: "Home", href: "/" }, { label: "Donate", href: "/donate" }] },
|
||||||
|
{ title: "Support", items: [{ label: "Troop 424", href: "#" }, { label: "Contact", href: "/contact" }] }
|
||||||
|
]}
|
||||||
|
copyrightText="© 2024 Saicharan Kotturu"
|
||||||
|
/>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
221
src/app/page.tsx
221
src/app/page.tsx
@@ -3,12 +3,13 @@
|
|||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||||
import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven';
|
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
|
||||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||||
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
|
import HeroPersonalLinks from '@/components/sections/hero/HeroPersonalLinks';
|
||||||
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||||
import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
|
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
|
||||||
|
import { Target, Zap, Heart, HandHeart } from 'lucide-react';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -28,220 +29,90 @@ export default function LandingPage() {
|
|||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{ name: "Home", id: "home" },
|
||||||
name: "Home",
|
{ name: "About", id: "about" },
|
||||||
id: "home",
|
{ name: "Project", id: "details" },
|
||||||
},
|
{ name: "Donate", id: "donate" },
|
||||||
{
|
{ name: "Contact", id: "contact" },
|
||||||
name: "About",
|
|
||||||
id: "about",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Project Details",
|
|
||||||
id: "details",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Donate",
|
|
||||||
id: "donate",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Contact",
|
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Mandir Eagle Project"
|
brandName="Mandir Eagle Project"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="home" data-section="home">
|
<div id="home" data-section="home">
|
||||||
<HeroBillboardRotatedCarousel
|
<HeroPersonalLinks
|
||||||
background={{
|
background={{ variant: "gradient-bars" }}
|
||||||
variant: "gradient-bars",
|
title="Light Up Our Temple Community"
|
||||||
}}
|
linkCards={[
|
||||||
title="Light Up Our Temple Community Together"
|
{ title: "Donate via Zelle", description: "Support the project directly with Zelle", button: { text: "Donate", href: "#donate" }, icon: Heart },
|
||||||
description="Help 17-year-old Saicharan Kotturu install safety signposts and solar lights at SDSV Mandir as his Eagle Scout service project. Every donation strengthens our sacred space."
|
{ title: "View Progress", description: "See project updates and goals", button: { text: "Learn More", href: "#details" }, icon: Target }
|
||||||
buttons={[
|
|
||||||
{
|
|
||||||
text: "Donate via Zelle",
|
|
||||||
href: "#donate",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
carouselItems={[
|
|
||||||
{
|
|
||||||
id: "1",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/street-sign-beach-indicating-directions-different-places-world-gili-trawangan_158538-26114.jpg",
|
|
||||||
imageAlt: "Community service project work",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "2",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-photographs-flag-ukraine-against-backdrop-city_169016-19603.jpg",
|
|
||||||
imageAlt: "Installing solar lighting",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "3",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-bald-eagle-sitting-wood-with-blurred-background-confidence-concept_181624-7881.jpg",
|
|
||||||
imageAlt: "Project site preparation",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "4",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/real-estate-agents-dicussing-plans_23-2147650207.jpg",
|
|
||||||
imageAlt: "Eagle Scout project team",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "5",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/businessman-with-folder-talking-phone_23-2147650214.jpg",
|
|
||||||
imageAlt: "Landscape lighting upgrades",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "6",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/group-asian-diverse-people-volunteer-teamwork-environment-conservationvolunteer-help-picking-plastic-foam-garbage-park-areavolunteering-world-environment-day_640221-395.jpg",
|
|
||||||
imageAlt: "Temple grounds service work",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
<InlineImageSplitTextAbout
|
<MediaAbout
|
||||||
|
title="About Saicharan's Mission"
|
||||||
|
description="Saicharan Kotturu, a 17-year-old scout, is dedicating his Eagle Scout service project to the SDSV Mandir. This initiative focuses on enhancing site safety and community accessibility through strategic infrastructure improvements."
|
||||||
|
tag="Our Mission"
|
||||||
|
imageSrc="http://img.b2bpic.net/free-photo/group-happy-diverse-volunteers_53876-20840.jpg?_wi=1"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
heading={[
|
|
||||||
{
|
|
||||||
type: "text",
|
|
||||||
content: "About Saicharan's Mission",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: "image",
|
|
||||||
src: "http://img.b2bpic.net/free-photo/group-happy-diverse-volunteers_53876-20840.jpg",
|
|
||||||
alt: "Saicharan Kotturu",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="details" data-section="details">
|
<div id="details" data-section="details">
|
||||||
<FeatureCardTwentySeven
|
<FeatureBorderGlow
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
|
title="Project Impact & Goals"
|
||||||
|
description="Enhancing the safety and beauty of SDSV Mandir through necessary infrastructure upgrades."
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{
|
{ icon: Target, title: "Safety Signposts", description: "Installing durable signposts for improved site navigation and accessibility." },
|
||||||
id: "f1",
|
{ icon: Zap, title: "Solar Lighting", description: "Installing energy-efficient solar-powered lighting for enhanced night safety." },
|
||||||
title: "Safety Signposts",
|
{ icon: HandHeart, title: "Community Beautification", description: "Creating a more welcoming, safe, and aesthetic environment for all visitors." },
|
||||||
descriptions: [
|
|
||||||
"Installing durable signposts for improved accessibility and clarity throughout the Mandir grounds.",
|
|
||||||
],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/toutes-directions-blue-sky_268835-3344.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "f2",
|
|
||||||
title: "Solar Lighting",
|
|
||||||
descriptions: [
|
|
||||||
"Installing solar-powered light posts to ensure well-lit and safe pathways during evening events.",
|
|
||||||
],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/crescent-masjid-mountain-marbles-light-tourists_1142-1056.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "f3",
|
|
||||||
title: "Temple Enhancement",
|
|
||||||
descriptions: [
|
|
||||||
"Contributing to the beautification and functional safety of our shared sacred community space.",
|
|
||||||
],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/crossroads_1063-101.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Project Impact & Goals"
|
|
||||||
description="We are enhancing the safety and beauty of SDSV Mandir through infrastructure improvements."
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="donate" data-section="donate">
|
<div id="donate" data-section="donate">
|
||||||
<PricingCardFive
|
<PricingCardTwo
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
|
title="Support via Zelle"
|
||||||
|
description="Your contributions directly fund the project materials. Please use Zelle at the temple office to contribute."
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
plans={[
|
plans={[
|
||||||
{
|
{ id: "p1", badge: "Supporter", price: "$25", subtitle: "One solar bulb contribution", features: ["Direct solar light support"], buttons: [{ text: "Donate Now", href: "#" }] },
|
||||||
id: "p1",
|
{ id: "p2", badge: "Structural", price: "$100", subtitle: "Signpost materials", features: ["Durable signpost materials"], buttons: [{ text: "Donate Now", href: "#" }] },
|
||||||
tag: "Essential",
|
{ id: "p3", badge: "Champion", price: "$500", subtitle: "Infrastructure funding", features: ["Complete light assembly"], buttons: [{ text: "Donate Now", href: "#" }] },
|
||||||
price: "$25",
|
|
||||||
period: "Contribution",
|
|
||||||
description: "Covers one solar bulb for our new pathway lights.",
|
|
||||||
button: {
|
|
||||||
text: "Donate via Zelle",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
featuresTitle: "Impact",
|
|
||||||
features: [
|
|
||||||
"Solar lighting support",
|
|
||||||
"Community safety",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "p2",
|
|
||||||
tag: "Structural",
|
|
||||||
price: "$100",
|
|
||||||
period: "Contribution",
|
|
||||||
description: "Covers materials for one safety signpost installation.",
|
|
||||||
button: {
|
|
||||||
text: "Donate via Zelle",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
featuresTitle: "Impact",
|
|
||||||
features: [
|
|
||||||
"Signpost materials",
|
|
||||||
"Accessibility support",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "p3",
|
|
||||||
tag: "Leadership",
|
|
||||||
price: "$500",
|
|
||||||
period: "Contribution",
|
|
||||||
description: "Major project support, funding complete lighting assembly.",
|
|
||||||
button: {
|
|
||||||
text: "Donate via Zelle",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
featuresTitle: "Impact",
|
|
||||||
features: [
|
|
||||||
"Major infrastructure",
|
|
||||||
"Sustained impact",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Contribute to the Cause"
|
|
||||||
description="Your donation directly funds the materials needed for the project. Every dollar makes a difference."
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactSplit
|
<ContactSplit
|
||||||
useInvertedBackground={false}
|
tag="Contact"
|
||||||
background={{
|
title="Get Involved"
|
||||||
variant: "plain",
|
description="Want to help or have questions about the Eagle Scout project? Reach out to us today."
|
||||||
}}
|
|
||||||
tag="Contact & Support"
|
|
||||||
title="How to Reach Out"
|
|
||||||
description="Have questions or want to volunteer? Feel free to contact us via the details below."
|
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/woman-girl-doing-remote-classes_23-2148597978.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/woman-girl-doing-remote-classes_23-2148597978.jpg"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
|
background={{ variant: "plain" }}
|
||||||
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoReveal
|
<FooterBaseReveal
|
||||||
logoText="SDSV Mandir Eagle Service Project"
|
logoText="SDSV Mandir Eagle Service Project"
|
||||||
leftLink={{
|
columns={[
|
||||||
text: "© 2024 Saicharan Kotturu",
|
{ title: "Links", items: [{ label: "Home", href: "/#home" }, { label: "Donate", href: "/#donate" }] },
|
||||||
href: "#",
|
{ title: "Support", items: [{ label: "Troop 424", href: "#" }, { label: "Contact", href: "/#contact" }] }
|
||||||
}}
|
]}
|
||||||
rightLink={{
|
copyrightText="© 2024 Saicharan Kotturu"
|
||||||
text: "Troop 424 | SHAC Council",
|
|
||||||
href: "#",
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #f5f5f5;
|
--background: #ffffff;
|
||||||
--card: #ffffff;
|
--card: #f9f9f9;
|
||||||
--foreground: #1c1c1c;
|
--foreground: #000612e6;
|
||||||
--primary-cta: #1f3251;
|
--primary-cta: #106EFB;
|
||||||
--primary-cta-text: #f5f5f5;
|
--primary-cta-text: #f5f5f5;
|
||||||
--secondary-cta: #ffffff;
|
--secondary-cta: #f9f9f9;
|
||||||
--secondary-cta-text: #1c1c1c;
|
--secondary-cta-text: #1c1c1c;
|
||||||
--accent: #15479c;
|
--accent: #e2e2e2;
|
||||||
--background-accent: #a8cce8;
|
--background-accent: #106EFB;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user