Skip to content

mitoperni/Nixi_web

Repository files navigation

Nixi Logo

Nixi Website

Professional web development in Granada with real code

Next.js TypeScript Tailwind CSS License


✨ Key Features

  • 🚀 Next.js 15 with App Router and Server Components
  • 🎨 Modern design with Tailwind CSS and Framer Motion animations
  • 🌍 Multilingual (Spanish/English) with next-intl
  • 📱 Responsive - Perfect on mobile, tablet, and desktop
  • 🔍 SEO optimized - Metadata, Schema.org, Open Graph
  • A+ Performance - Google PageSpeed optimized
  • 📧 Contact form with validation (React Hook Form + Zod)
  • 📝 Blog ready for MDX
  • 💜 Professional purple palette - Distinctive branding

🛠 Tech Stack

  • Framework: Next.js 15 (App Router)
  • Language: TypeScript
  • Styling: Tailwind CSS
  • Animations: Framer Motion
  • Internationalization: next-intl (Spanish/English)
  • Forms: React Hook Form + Zod
  • Validation: Zod

🚀 Quick Start

# Install dependencies
npm install

# Run development server
npm run dev

# Build for production
npm run build

# Run production server
npm start

📁 Project Structure

nixi-website/
├── app/
│   ├── [locale]/              # 🌍 Internationalized routes (ES/EN)
│   │   ├── page.tsx          # Homepage
│   │   ├── servicios/        # Services page
│   │   ├── portfolio/        # Projects
│   │   ├── sobre-nixi/       # About page
│   │   ├── blog/             # Blog
│   │   └── contacto/         # Contact form
│   ├── api/contact/          # 📧 Contact form API
│   ├── icon.svg              # 🎨 Auto favicon
│   ├── layout.tsx            # Root layout
│   └── globals.css           # Global styles
├── components/
│   ├── layout/               # 🧩 Header and Footer
│   ├── home/                 # 🏠 Hero, Services, etc.
│   ├── ui/                   # 🎨 Button, Card, Badge, Logo
│   └── forms/                # 📝 ContactForm
├── i18n/                     # 🌐 next-intl configuration
├── messages/                 # 📖 Translations (es.json, en.json)
├── public/                   # 📦 Static assets (logos, etc.)
└── lib/                      # 🛠 Utilities

🔧 Environment Variables

Copy .env.example to .env.local and configure:

# Resend API (for contact emails)
RESEND_API_KEY=your_api_key_here

# Site URL
NEXT_PUBLIC_SITE_URL=https://nixi.es

📧 Email Configuration

To enable contact form email sending:

  1. Create an account at Resend
  2. Get your API key
  3. Add it to .env.local
  4. Uncomment the code in app/api/contact/route.ts

🎨 Branding & Logos

The project includes a complete logo system:

React Component:

import Logo from '@/components/ui/Logo';

<Logo />                    // Default logo
<Logo variant="white" />    // White logo
<Logo variant="icon" />     // Icon only

📄 Implemented Pages

  • 🏠 / - Homepage with all sections
  • 💼 /servicios - Service packages detail
  • 🎨 /portfolio - Projects (with placeholders)
  • 👤 /sobre-nixi - About, values, and technologies
  • 📝 /blog - Articles listing (MDX-ready)
  • 📰 /blog/[slug] - Individual post template
  • 📧 /contacto - Contact form

🔍 SEO

  • Optimized metadata on every page
  • Schema.org structured data (LocalBusiness)
  • Open Graph tags
  • Configured robots.txt
  • Automatic sitemap

🎯 Development

The project uses:

  • TypeScript for type safety
  • ESLint for linting
  • Prettier (recommended to configure)

🚀 Deployment

Recommended on Vercel:

# Push to GitHub
git push origin main

# Connect repository in Vercel
# Configure environment variables
# Automatic deployment

Domain configuration:

  • Add your custom domain in Vercel
  • Configure DNS according to Vercel instructions

🎨 Customization

Colors

Colors are defined in tailwind.config.ts and app/globals.css:

--primary: #7C3AED;        /* Primary violet */
--primary-dark: #6D28D9;   /* Dark violet */
--primary-light: #A78BFA;  /* Light violet */

Translations

Edit messages/es.json and messages/en.json to change texts.

👨‍💻 Author

Miguel Toyas Pernichi Professional Web Developer in Granada, Spain nixi.es

📝 License

All rights reserved © 2025 Nixi

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages