fix: section bg #FFFDFA, revert birthday card fills to green/orange
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
68b98639f3
commit
d620ad45a4
2 changed files with 8 additions and 8 deletions
|
|
@ -65,7 +65,7 @@ export function BirthdayPricing({ packages, title, intro }: BirthdayPricingProps
|
|||
const activePackages = packages && packages.length > 0 ? packages : STATIC_PACKAGES
|
||||
|
||||
return (
|
||||
<section className="bg-[#fefaf6] py-[20px] md:py-[60px] lg:py-[40px]">
|
||||
<section className="bg-[#fffdfa] py-[20px] md:py-[60px] lg:py-[40px]">
|
||||
<div className="mx-auto max-w-[1204px] px-8">
|
||||
<div className="mb-[40px] flex flex-col gap-5 md:mb-[60px]">
|
||||
<h2
|
||||
|
|
@ -151,7 +151,7 @@ function PricingCard({ pkg }: { pkg: BirthdayPackageCMS }) {
|
|||
<div
|
||||
className="relative w-full overflow-hidden rounded-[23.79px] lg:w-[362px]"
|
||||
style={{
|
||||
backgroundColor: '#fffdfa',
|
||||
backgroundColor: featured ? '#f28b4a' : '#396817',
|
||||
height: '756px',
|
||||
padding: '60px 40px 40px 40px',
|
||||
boxShadow: '0 4px 60px 0 rgba(242,139,74,0.25)',
|
||||
|
|
@ -164,15 +164,15 @@ function PricingCard({ pkg }: { pkg: BirthdayPackageCMS }) {
|
|||
style={{
|
||||
fontFamily: 'var(--font-montserrat, Montserrat), sans-serif',
|
||||
fontSize: 40,
|
||||
color: featured ? '#f28b4a' : '#396817',
|
||||
color: featured ? '#272727' : '#f28b4a',
|
||||
margin: 0,
|
||||
}}
|
||||
>
|
||||
{name}
|
||||
</p>
|
||||
<div className="h-px w-full bg-[#396817]/15" />
|
||||
<div className="h-px w-full bg-white" />
|
||||
<p
|
||||
className="text-center leading-none text-[#272727]"
|
||||
className="text-center leading-none text-white"
|
||||
style={{
|
||||
fontFamily: 'var(--font-inter, Inter), sans-serif',
|
||||
fontSize: 56,
|
||||
|
|
@ -184,7 +184,7 @@ function PricingCard({ pkg }: { pkg: BirthdayPackageCMS }) {
|
|||
</p>
|
||||
{priceLabel && (
|
||||
<p
|
||||
className="-mt-4 text-center text-[14px] text-[#272727]/60"
|
||||
className="-mt-4 text-center text-[14px] text-white/70"
|
||||
style={{ fontFamily: 'var(--font-inter, Inter), sans-serif' }}
|
||||
>
|
||||
{priceLabel}
|
||||
|
|
@ -203,7 +203,7 @@ function PricingCard({ pkg }: { pkg: BirthdayPackageCMS }) {
|
|||
className="h-[30px] w-[30px] flex-none rounded-[24px] object-contain"
|
||||
/>
|
||||
<span
|
||||
className="text-[20px] leading-[1.5] font-medium text-[#272727]"
|
||||
className="text-[20px] leading-[1.5] font-medium text-white"
|
||||
style={{ fontFamily: 'var(--font-montserrat, Montserrat), sans-serif' }}
|
||||
>
|
||||
{f.text}
|
||||
|
|
|
|||
|
|
@ -115,7 +115,7 @@ export function WhyParents({ items, sideGallery, title }: WhyParentsProps) {
|
|||
}, [])
|
||||
|
||||
return (
|
||||
<section className="py-[20px] md:py-[60px] lg:py-[40px]">
|
||||
<section className="bg-[#fffdfa] py-[20px] md:py-[60px] lg:py-[40px]">
|
||||
<div className="mx-auto max-w-[1204px] px-8">
|
||||
<h2
|
||||
className="mb-[40px] text-[24px] font-bold text-[#272727] uppercase md:mb-[60px] md:text-[32px]"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue