33import Header from '@/components/layout/Header' ;
44import Footer from '@/components/layout/Footer' ;
55import SectionNavigation from '@/components/ui/SectionNavigation' ;
6- import SectionPlaceholder from '@/components/ui/SectionPlaceholder' ;
76import { AnimatedSection } from '@/components/ui/AnimatedSection' ;
87import { PageHero } from '@/components/ui/PageHero' ;
9- import { Award , FileText , Download } from 'lucide-react' ;
8+ import { SectionHeader } from '@/components/ui/SectionHeader' ;
9+ import { Award } from 'lucide-react' ;
1010import { useLanguage } from '@/contexts/LanguageContext' ;
1111
1212export default function BrandPage ( ) {
@@ -32,34 +32,43 @@ export default function BrandPage() {
3232 maxWidth = "4xl"
3333 />
3434
35- < div id = "principles" className = "min-h-screen flex items-center justify-center scroll-mt-24" >
36- < AnimatedSection delay = { 0.1 } >
37- < SectionPlaceholder
38- title = { t ( 'brand.principles.title' ) }
39- description = { t ( 'brand.principles.description' ) }
40- icon = { Award }
41- />
42- </ AnimatedSection >
35+ < div id = "principles" className = "scroll-mt-24" >
36+ < section className = "py-20 px-4 sm:px-6 lg:px-8" >
37+ < div className = "max-w-7xl mx-auto" >
38+ < AnimatedSection delay = { 0.1 } >
39+ < SectionHeader
40+ title = { t ( 'brand.principles.title' ) }
41+ description = { t ( 'brand.principles.description' ) }
42+ />
43+ </ AnimatedSection >
44+ </ div >
45+ </ section >
4346 </ div >
4447
45- < div id = "guidelines" className = "min-h-screen flex items-center justify-center scroll-mt-24" >
46- < AnimatedSection delay = { 0.2 } >
47- < SectionPlaceholder
48- title = { t ( 'brand.guidelines.title' ) }
49- description = { t ( 'brand.guidelines.description' ) }
50- icon = { FileText }
51- />
52- </ AnimatedSection >
48+ < div id = "guidelines" className = "scroll-mt-24" >
49+ < section className = "py-20 px-4 sm:px-6 lg:px-8" >
50+ < div className = "max-w-7xl mx-auto" >
51+ < AnimatedSection delay = { 0.2 } >
52+ < SectionHeader
53+ title = { t ( 'brand.guidelines.title' ) }
54+ description = { t ( 'brand.guidelines.description' ) }
55+ />
56+ </ AnimatedSection >
57+ </ div >
58+ </ section >
5359 </ div >
5460
55- < div id = "resources" className = "min-h-screen flex items-center justify-center scroll-mt-24" >
56- < AnimatedSection delay = { 0.3 } >
57- < SectionPlaceholder
58- title = { t ( 'brand.resources.title' ) }
59- description = { t ( 'brand.resources.description' ) }
60- icon = { Download }
61- />
62- </ AnimatedSection >
61+ < div id = "resources" className = "scroll-mt-24" >
62+ < section className = "py-20 px-4 sm:px-6 lg:px-8" >
63+ < div className = "max-w-7xl mx-auto" >
64+ < AnimatedSection delay = { 0.3 } >
65+ < SectionHeader
66+ title = { t ( 'brand.resources.title' ) }
67+ description = { t ( 'brand.resources.description' ) }
68+ />
69+ </ AnimatedSection >
70+ </ div >
71+ </ section >
6372 </ div >
6473 < Footer />
6574 </ main >
0 commit comments