diff --git a/app/about/about.module.css b/app/about/about.module.css index 79be2d6..2bf8191 100644 --- a/app/about/about.module.css +++ b/app/about/about.module.css @@ -7,10 +7,12 @@ /* Hero Section */ .hero { - background: var(--background-secondary); - padding: 8rem 0; + background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('/images/about/aboutpage-banner.webp'); + background-size: cover; + background-position: center; + padding: 8rem 0 8rem; position: relative; - border-bottom: 1px solid var(--border-color); + color: white; } .heroContent { @@ -25,17 +27,17 @@ margin-bottom: 1rem; background: var(--gradient-primary); -webkit-background-clip: text; - -webkit-text-fill-color: transparent; + /* -webkit-text-fill-color: transparent; */ background-clip: text; } .breadcrumb { - color: var(--text-secondary); + color: rgba(255, 255, 255, 0.8); font-size: 0.95rem; } .breadcrumb a { - color: var(--text-secondary); + color: rgba(255, 255, 255, 0.8); text-decoration: none; transition: color 0.2s; } diff --git a/app/about/page.tsx b/app/about/page.tsx index f8697a0..213c994 100644 --- a/app/about/page.tsx +++ b/app/about/page.tsx @@ -33,7 +33,7 @@ export default function AboutPage() {