diff --git a/site/app/page.tsx b/site/app/page.tsx index 88f0cc9..b6983d9 100644 --- a/site/app/page.tsx +++ b/site/app/page.tsx @@ -1,103 +1,47 @@ -import Image from "next/image"; +'use client' -export default function Home() { +import Image from 'next/image' +import imageHacker from '/public/images/image_accueil.webp' // change ce chemin selon ton image + +export default function HomePage() { return ( -
-
- Next.js logo -
    -
  1. - Get started by editing{" "} - - app/page.tsx - - . -
  2. -
  3. - Save and see your changes instantly. -
  4. -
+
+ {/* NAVBAR */} +
+ +
-
- - Vercel logomark - Deploy now - - - Read our docs - + {/* CONTENU CENTRAL */} +
+

Bienvenue sur CryptAbyss

+

+ Un projet mené par des étudiants en Master ISRI de l'Université de Picardie Jules Verne +

+

Rendez-vous .........

+ {/*

CTF Terminé !

*/} + +
+ Image CryptAbyss
-
- ); -} + ) +} \ No newline at end of file diff --git a/site/public/images/image_accueil.webp b/site/public/images/image_accueil.webp new file mode 100644 index 0000000..836e64c Binary files /dev/null and b/site/public/images/image_accueil.webp differ diff --git a/site/supabase/client.ts b/site/supabase/client.ts new file mode 100644 index 0000000..5ec8ca2 --- /dev/null +++ b/site/supabase/client.ts @@ -0,0 +1,8 @@ +// site/supabase/client.ts +import { createClient } from '@supabase/supabase-js' + +const supabaseUrl = 'http://127.0.0.1:54321' +const supabaseKey = 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZS1kZW1vIiwicm9sZSI6ImFub24iLCJleHAiOjE5ODM4MTI5OTZ9.CRXP1A7WOeoJeXxjNni43kdQwgnWNReilDMblYTn_I0' + +export const supabase = createClient(supabaseUrl, supabaseKey) +