Skip to content

Latest commit

 

History

History
51 lines (36 loc) · 1.53 KB

File metadata and controls

51 lines (36 loc) · 1.53 KB

Siezar.com

Personal website built with Next.js.

Current Status

Active Pages:

  • /travel/cdmx - Travel notes and experiences from Mexico City

Architecture

Components Structure

Travel page components are organized in /components/field-notes/ with the following structure:

  • Each component has its own folder
  • Each folder contains:
    • ComponentName.tsx - React component
    • ComponentName.module.css - CSS module for styling

Data Structure

Travel journal data is stored in travel/cdmx/data/ with two Zod schemas:

  • Itinerary schema - Structure for planned activities and locations
  • Journal schema - Structure for travel experiences and notes

Getting Started

First, run the development server:

npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev

Open http://localhost:3000 with your browser to see the result.

Development

The site uses:

Deploy on Vercel

The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.

Check out the Next.js deployment documentation for more details.