Skip to content

Commit

Permalink
ui(nextjs): fix colors
Browse files Browse the repository at this point in the history
  • Loading branch information
macojaune committed Jan 15, 2025
1 parent bd654ae commit 22eb29f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 64 deletions.
57 changes: 0 additions & 57 deletions .github/workflows/ci.yml

This file was deleted.

12 changes: 5 additions & 7 deletions apps/nextjs/src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,7 @@ export default function HomePage() {
Ne manquez plus aucun groupe grâce à la géolocalisation en direct
</p>
<Link href="/map">
<Button
size="lg"
variant={isDark ? "primary" : "secondary"}
className="dark:text-white"
>
<Button size="lg" variant="secondary" className="dark:text-white">
Voir la carte
</Button>
</Link>
Expand Down Expand Up @@ -103,15 +99,17 @@ export default function HomePage() {
</section>

{/* Pour les Membres Section */}
<section className="bg-secondary py-20 dark:bg-secondary-foreground">
<section className="bg-secondary py-20">
<div className="absolute inset-0 z-0">
<div className="absolute inset-0 bg-cover bg-center" />
<div className="absolute inset-0 bg-gradient-to-b from-purple-900/80 to-purple-900/90 backdrop-blur-sm" />
</div>

<div className="container relative z-10 mx-auto px-4 text-center">
<div className="mx-auto max-w-3xl text-center">
<h2 className="mb-4 text-4xl font-bold">Carnavalier·e ?</h2>
<h2 className="mb-4 text-4xl font-bold text-primary">
Carnavalier·e ?
</h2>
<p className="mb-8 text-xl text-gray-400">
Télécharge l'application et partage la position de ton groupe en
direct.
Expand Down

0 comments on commit 22eb29f

Please sign in to comment.