@@ -28,22 +28,27 @@ export default async function ChangelogPage() {
2828 ) ;
2929
3030 return (
31- < main className = "flex-1 w-full max-w-249 mx-auto px-4 py-8 z-1" >
32- < section className = "pt-20 pb-12 mt-10" >
33- < p className = "m-0 flex items-center justify-center gap-2 text-sm font-semibold uppercase tracking-[1.8px] text-foreground-ppg" >
34- < i className = "fa-regular fa-sparkles" aria-hidden />
35- Changelog
36- </ p >
37- < h1 className = "text-4xl sm:text-5xl md:text-6xl stretch-display mb-0 text-center mt-0 font-sans-display text-foreground-neutral max-w-224 mx-auto" >
38- The Latest News from Prisma
39- </ h1 >
40- < p className = "m-0 max-w-[640px] mx-auto text-center text-base text-foreground-neutral-weak md:text-lg" >
41- Here you’ll find all improvements and updates we’ve made to our
42- products.
43- </ p >
44- </ section >
31+ < main className = "flex-1 w-full z-1 bg-background-default" >
32+ < div className = "hero -mt-24 pt-40 flex items-end justify-center px-4 relative" >
33+ < div className = "absolute inset-0 pointer-events-none z-1 bg-[linear-gradient(180deg,var(--color-foreground-ppg)_0%,var(--color-background-default)_100%)] opacity-20" />
34+ < section className = "content relative z-2 flex flex-col gap-8 pb-12" >
35+ < div className = "flex flex-col gap-4 items-center text-center" >
36+ < div className = "flex items-center gap-2 text-foreground-ppg-weak uppercase tracking-widest text-sm font-sans-display font-black" >
37+ < i className = "fa-regular fa-sparkles" aria-hidden />
38+ < span > Changelog</ span >
39+ </ div >
40+ < h1 className = "text-4xl sm:text-5xl md:text-6xl stretch-display mb-0 text-center mt-0 font-sans-display text-foreground-neutral max-w-4xl mx-auto" >
41+ The Latest News from Prisma
42+ </ h1 >
43+ </ div >
44+ < p className = "m-0 max-w-[640px] mx-auto text-center text-base text-foreground-neutral md:text-lg" >
45+ Here you’ll find all improvements and updates we’ve made to our
46+ products.
47+ </ p >
48+ </ section >
49+ </ div >
4550
46- < section >
51+ < section className = "max-w-249 mx-auto px-4 py-8" >
4752 < div className = "grid gap-6 mt-12 grid-cols-1" >
4853 { entriesWithPreview . map ( ( { entry, summary } ) => {
4954 const tags = entry . data . tags ?? [ ] ;
0 commit comments