Retour aux projets
En ligne

PAZENT Studio

PAZENT Studio est mon agence digitale independante basee a Lyon. Le site vitrine met en avant mes services : developpement web/mobile, solutions Web3, cybersecurite et consulting. Construit avec Next.js et Tailwind, il reflete l'excellence digitale que je propose a mes clients.

Annee2023-2024
RoleFondateur & Lead Dev
TypeAgence digitale

Technologies utilisees

Next.js
Framework React SSR
React
Composants UI
Tailwind CSS
Utility-first CSS
Supabase
Backend
Vercel
Deploiement
Figma
Design system

Points cles

Design premium
Glassmorphism et animations fluides
Responsive design
Adapte a tous les ecrans
SEO optimise
Meta tags, sitemap, structured data
Formulaire de contact
Validation et envoi securise
Portfolio interactif
Showcase des projets clients
Performance
Score Lighthouse > 90

Processus de developpement

Branding & Design

Identite visuelle, palette, typographie, maquettes Figma

Developpement Next.js

SSR, routing, composants reutilisables

Integration Backend

API Supabase, formulaire contact, analytics

Deploiement & SEO

Vercel, optimisation images, meta tags

Apercu technique

next.config.js
1// next.config.js - Configuration PAZENT Studio
2const nextConfig = {
3 reactStrictMode: true,
4 images: {
5 domains: ['pazent.fr', 'cdn.pazent.fr'],
6 formats: ['image/avif', 'image/webp'],
7 },
8 async redirects() {
9 return [
10 {
11 source: '/home',
12 destination: '/',
13 permanent: true,
14 },
15 ];
16 },
17 async headers() {
18 return [
19 {
20 source: '/(.*)',
21 headers: [
22 { key: 'X-Frame-Options', value: 'DENY' },
23 { key: 'X-Content-Type-Options', value: 'nosniff' },
24 ],
25 },
26 ];
27 },
28};
29
30module.exports = nextConfig;