raulromero2968-svg/apex-intelligence-center

Underground Intel for Serious TCG Collectors - Premium market analysis, data-driven insights, and exclusive intelligence for the trading card community.

0

stars

2,464

commits

TypeScript

primary language

Sep 8, 2026

updated

apexintelligence.io/

README

Apex Intelligence - TCG Market Intel Platform

A cyberpunk-themed TCG market intelligence platform built with Next.js 14, TypeScript, and Tailwind CSS.

πŸš€ Features

  • Cyberpunk aesthetic with neon accents and dark mode design
  • Newsletter integration ready for Substack or custom backend
  • Responsive design optimized for all devices
  • Performance optimized with Next.js App Router
  • SEO ready with metadata and OpenGraph tags
  • Animated UI using Framer Motion

πŸ“‹ Prerequisites

  • Node.js 18+ installed
  • npm or yarn package manager
  • Vercel account (for deployment)

πŸ› οΈ Setup

  1. Install dependencies:
npm install
  1. Run development server:
npm run dev
  1. Open your browser: Navigate to http://localhost:3000

πŸ“ Configuration

Newsletter Integration

  1. Get your Substack embed code or API integration
  2. Replace the form in /app/subscribe/page.tsx with your embed code
  3. Update the handleSubmit function for your backend integration

Content Management

  • Edit articles in /app/intel/page.tsx
  • Add new pages in the /app directory
  • Customize colors in /tailwind.config.js

Styling

Colors can be customized in tailwind.config.js:

  • neon-pink: #FF006E
  • neon-cyan: #00F5FF
  • neon-purple: #B026FF
  • cyber-dark: #0A0E27

πŸš€ Deployment to Vercel

Option 1: Deploy via Vercel CLI

  1. Install Vercel CLI:
npm i -g vercel
  1. Login to Vercel:
vercel login
  1. Deploy:
vercel
  1. Deploy to production:
vercel --prod

Option 2: Deploy via Vercel Dashboard

  1. Push your code to GitHub
  2. Go to vercel.com
  3. Click "Import Project"
  4. Select your repository
  5. Configure project:
    • Framework Preset: Next.js
    • Build Command: npm run build
    • Output Directory: .next
  6. Click "Deploy"

Custom Domain Setup

  1. Go to your project settings in Vercel
  2. Navigate to "Domains"
  3. Add apexintelligence.io
  4. Follow DNS configuration instructions
  5. Wait for DNS propagation (can take up to 48 hours)

πŸ“ Project Structure

apex-intelligence/
β”œβ”€β”€ app/
β”‚   β”œβ”€β”€ about/          # About page
β”‚   β”œβ”€β”€ intel/          # Intelligence archive
β”‚   β”œβ”€β”€ subscribe/      # Newsletter signup
β”‚   β”œβ”€β”€ layout.tsx      # Root layout
β”‚   β”œβ”€β”€ page.tsx        # Homepage
β”‚   └── globals.css     # Global styles
β”œβ”€β”€ components/
β”‚   β”œβ”€β”€ Navigation.tsx  # Main navigation
β”‚   └── ui/            # Reusable UI components
β”œβ”€β”€ public/            # Static assets
β”œβ”€β”€ data/              # Content data
└── package.json

🎨 Customization

Adding New Articles

Edit the articles array in /app/intel/page.tsx:

{
  slug: 'article-url-slug',
  title: 'Article Title',
  excerpt: 'Brief description...',
  date: 'Oct 25, 2024',
  readTime: '8 min read',
  category: 'Market Analysis',
  isPremium: false
}

Creating New Pages

  1. Create a new folder in /app/your-page
  2. Add a page.tsx file
  3. The route will automatically be /your-page

Modifying Navigation

Edit the navItems array in /components/Navigation.tsx

πŸ”§ Environment Variables

Create a .env.local file for environment variables:

NEXT_PUBLIC_SITE_URL=https://apexintelligence.io
# Add your API keys and secrets here

πŸ“¦ Build for Production

npm run build
npm start

πŸ› Troubleshooting

Build errors

  • Clear .next folder: rm -rf .next
  • Reinstall dependencies: rm -rf node_modules && npm install

Deployment issues

  • Check Vercel logs in dashboard
  • Ensure all environment variables are set
  • Verify Node.js version (18+)

πŸ“„ License

Private project - All rights reserved

🀝 Support

For issues or questions:


Built with ❀️ for the TCG community

Contributors

raulromero2968-svg

1,241 commits

claude

1,214 commits

Copilot

3 commits

raulromero2968-svg/apex-intelligence-center

Underground Intel for Serious TCG Collectors - Premium market analysis, data-driven insights, and exclusive intelligence for the trading card community.

0

stars

2,464

commits

TypeScript

primary language

Sep 8, 2026

updated

apexintelligence.io/

README

Apex Intelligence - TCG Market Intel Platform

A cyberpunk-themed TCG market intelligence platform built with Next.js 14, TypeScript, and Tailwind CSS.

πŸš€ Features

  • Cyberpunk aesthetic with neon accents and dark mode design
  • Newsletter integration ready for Substack or custom backend
  • Responsive design optimized for all devices
  • Performance optimized with Next.js App Router
  • SEO ready with metadata and OpenGraph tags
  • Animated UI using Framer Motion

πŸ“‹ Prerequisites

  • Node.js 18+ installed
  • npm or yarn package manager
  • Vercel account (for deployment)

πŸ› οΈ Setup

  1. Install dependencies:
npm install
  1. Run development server:
npm run dev
  1. Open your browser: Navigate to http://localhost:3000

πŸ“ Configuration

Newsletter Integration

  1. Get your Substack embed code or API integration
  2. Replace the form in /app/subscribe/page.tsx with your embed code
  3. Update the handleSubmit function for your backend integration

Content Management

  • Edit articles in /app/intel/page.tsx
  • Add new pages in the /app directory
  • Customize colors in /tailwind.config.js

Styling

Colors can be customized in tailwind.config.js:

  • neon-pink: #FF006E
  • neon-cyan: #00F5FF
  • neon-purple: #B026FF
  • cyber-dark: #0A0E27

πŸš€ Deployment to Vercel

Option 1: Deploy via Vercel CLI

  1. Install Vercel CLI:
npm i -g vercel
  1. Login to Vercel:
vercel login
  1. Deploy:
vercel
  1. Deploy to production:
vercel --prod

Option 2: Deploy via Vercel Dashboard

  1. Push your code to GitHub
  2. Go to vercel.com
  3. Click "Import Project"
  4. Select your repository
  5. Configure project:
    • Framework Preset: Next.js
    • Build Command: npm run build
    • Output Directory: .next
  6. Click "Deploy"

Custom Domain Setup

  1. Go to your project settings in Vercel
  2. Navigate to "Domains"
  3. Add apexintelligence.io
  4. Follow DNS configuration instructions
  5. Wait for DNS propagation (can take up to 48 hours)

πŸ“ Project Structure

apex-intelligence/
β”œβ”€β”€ app/
β”‚   β”œβ”€β”€ about/          # About page
β”‚   β”œβ”€β”€ intel/          # Intelligence archive
β”‚   β”œβ”€β”€ subscribe/      # Newsletter signup
β”‚   β”œβ”€β”€ layout.tsx      # Root layout
β”‚   β”œβ”€β”€ page.tsx        # Homepage
β”‚   └── globals.css     # Global styles
β”œβ”€β”€ components/
β”‚   β”œβ”€β”€ Navigation.tsx  # Main navigation
β”‚   └── ui/            # Reusable UI components
β”œβ”€β”€ public/            # Static assets
β”œβ”€β”€ data/              # Content data
└── package.json

🎨 Customization

Adding New Articles

Edit the articles array in /app/intel/page.tsx:

{
  slug: 'article-url-slug',
  title: 'Article Title',
  excerpt: 'Brief description...',
  date: 'Oct 25, 2024',
  readTime: '8 min read',
  category: 'Market Analysis',
  isPremium: false
}

Creating New Pages

  1. Create a new folder in /app/your-page
  2. Add a page.tsx file
  3. The route will automatically be /your-page

Modifying Navigation

Edit the navItems array in /components/Navigation.tsx

πŸ”§ Environment Variables

Create a .env.local file for environment variables:

NEXT_PUBLIC_SITE_URL=https://apexintelligence.io
# Add your API keys and secrets here

πŸ“¦ Build for Production

npm run build
npm start

πŸ› Troubleshooting

Build errors

  • Clear .next folder: rm -rf .next
  • Reinstall dependencies: rm -rf node_modules && npm install

Deployment issues

  • Check Vercel logs in dashboard
  • Ensure all environment variables are set
  • Verify Node.js version (18+)

πŸ“„ License

Private project - All rights reserved

🀝 Support

For issues or questions:


Built with ❀️ for the TCG community

Contributors

raulromero2968-svg

1,241 commits

claude

1,214 commits

Copilot

3 commits

Languages

TypeScript

75.9%

HTML

11.0%

MDX

7.6%

Python

1.8%

JavaScript

1.6%