Créer une nouvelle page Next.js

VérifiéSûr

Crée un nouveau fichier de page Next.js avec un groupe de routes (tableau de bord ou authentification), un composant optionnel associé, et les motifs appropriés pour l'authentification, le contexte d'organisation et les états de chargement/erreur. Utile pour ajouter une nouvelle page au tableau de bord Colophonie tout en assurant la cohérence et les bonnes pratiques.

Spar Skills Guide Bot
DeveloppementIntermédiaire
6002/06/2026
Claude CodeCursorWindsurf
#nextjs-scaffold#dashboard-page#page-template#auth-component

Recommandé pour

Notre avis

Crée une nouvelle page Next.js pour le tableau de bord Colophony avec authentification et contexte d'organisation.

Points forts

  • Scaffoldage rapide avec modèles prêts à l'emploi
  • Inclut protection d'authentification et chargement/erreur
  • Option de création simultanée du composant associé
  • Respecte les conventions du projet

Limites

  • Spécifique à la structure du projet Colophony
  • Nécessite des connaissances du projet pour la personnalisation
  • Ne gère pas les cas avancés de validation de formulaire
Quand l'utiliser

Quand vous devez ajouter une nouvelle page au tableau de bord Colophony avec les standards du projet.

Quand l'éviter

Pour des pages ne suivant pas la mise en page du tableau de bord ou nécessitant un style externe.

Analyse de sécurité

Sûr
Score qualité90/100

The skill only scaffolds new Next.js pages and components by generating static template code into the project file structure. It does not execute any external commands, network requests, or destructive actions. There is no obfuscated or risky payload.

Aucun point d'attention détecté

Exemples

Create dashboard page
/new-page settings/privacy
Create auth page
/new-page --auth reset-password
Create page with component
/new-page --with-component reports

name: new-page description: Scaffold a new Next.js page with proper patterns for the Colophony dashboard.

/new-page

Scaffold a new Next.js page with proper patterns for the Colophony dashboard.

What this skill does

  1. Creates a new page file in apps/web/src/app/
  2. Optionally creates an accompanying component
  3. Sets up proper auth protection and organization context
  4. Includes loading and error states

Usage

/new-page settings/privacy          # Create page at /settings/privacy
/new-page organizations             # Create page at /organizations
/new-page --auth reset-password     # Create auth page (no sidebar)
/new-page --with-component reports  # Create page + component

Options

  • --auth - Create in (auth) route group (centered, no sidebar)
  • --with-component - Also create a component file
  • --editor - Require editor role
  • --admin - Require admin role

Instructions for Claude

When the user invokes /new-page [options] <name>:

1. Determine the route group

  • If --auth flag: Use apps/web/src/app/(auth)/<name>/page.tsx
  • Otherwise: Use apps/web/src/app/(dashboard)/<name>/page.tsx

2. Create the page file

For dashboard pages:

'use client';

import { ProtectedRoute } from '@/components/auth/protected-route';
import { <Name>Content } from '@/components/<name>/<name>-content';

export default function <Name>Page() {
  return (
    <ProtectedRoute requireEditor={/* true if --editor */}>
      <<Name>Content />
    </ProtectedRoute>
  );
}

For auth pages:

import { <Name>Form } from '@/components/auth/<name>-form';

export default function <Name>Page() {
  return <<Name>Form />;
}

3. If --with-component, create the component

Dashboard component at apps/web/src/components/<name>/<name>-content.tsx:

'use client';

import { trpc } from '@/lib/trpc';
import { useAuth } from '@/hooks/use-auth';
import { useOrganization } from '@/hooks/use-organization';
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card';
import { Skeleton } from '@/components/ui/skeleton';

export function <Name>Content() {
  const { user } = useAuth();
  const { currentOrg } = useOrganization();

  // TODO: Add your tRPC query here
  // const { data, isLoading, error } = trpc.<router>.<method>.useQuery({...});

  return (
    <div className="space-y-6">
      <div>
        <h1 className="text-2xl font-bold"><Name></h1>
        <p className="text-muted-foreground">
          TODO: Add description
        </p>
      </div>

      <Card>
        <CardHeader>
          <CardTitle>TODO: Card Title</CardTitle>
        </CardHeader>
        <CardContent>
          {/* TODO: Add content */}
          <p>Content goes here</p>
        </CardContent>
      </Card>
    </div>
  );
}

Auth component at apps/web/src/components/auth/<name>-form.tsx:

'use client';

import { useState } from 'react';
import { useRouter } from 'next/navigation';
import Link from 'next/link';
import { useForm } from 'react-hook-form';
import { zodResolver } from '@hookform/resolvers/zod';
import { z } from 'zod';
import { Button } from '@/components/ui/button';
import { Input } from '@/components/ui/input';
import {
  Card,
  CardContent,
  CardDescription,
  CardFooter,
  CardHeader,
  CardTitle,
} from '@/components/ui/card';
import {
  Form,
  FormControl,
  FormField,
  FormItem,
  FormLabel,
  FormMessage,
} from '@/components/ui/form';
import { Alert, AlertDescription } from '@/components/ui/alert';

const formSchema = z.object({
  // TODO: Add form fields
});

type FormData = z.infer<typeof formSchema>;

export function <Name>Form() {
  const router = useRouter();
  const [error, setError] = useState<string | null>(null);

  const form = useForm<FormData>({
    resolver: zodResolver(formSchema),
    defaultValues: {},
  });

  const onSubmit = async (data: FormData) => {
    setError(null);
    try {
      // TODO: Add form submission logic
      router.push('/');
    } catch (err) {
      setError(err instanceof Error ? err.message : 'An error occurred');
    }
  };

  return (
    <Card className="w-full max-w-md">
      <CardHeader>
        <CardTitle>TODO: Title</CardTitle>
        <CardDescription>TODO: Description</CardDescription>
      </CardHeader>
      <CardContent>
        <Form {...form}>
          <form onSubmit={form.handleSubmit(onSubmit)} className="space-y-4">
            {error && (
              <Alert variant="destructive">
                <AlertDescription>{error}</AlertDescription>
              </Alert>
            )}

            {/* TODO: Add form fields */}

            <Button type="submit" className="w-full">
              Submit
            </Button>
          </form>
        </Form>
      </CardContent>
      <CardFooter>
        <Link href="/login" className="text-sm text-muted-foreground hover:underline">
          Back to login
        </Link>
      </CardFooter>
    </Card>
  );
}

4. Create directory if needed

Ensure the directory structure exists before creating files.

5. Summary

Inform the user:

  • What files were created
  • What TODOs need to be filled in
  • Remind to add navigation links if needed (sidebar, header)
Skills similaires