Decoding the singularity with raw code and bold design.
NEO.CORTEX is an open-source tech blog built with Next.js 16, featuring a stunning neo-brutalist design. Write about AI, software engineering, and the future of technology.
- Node.js 18 or higher
- npm, pnpm, or yarn
# Clone the repository
git clone https://github.com/iamartyaa/neo-cortex.git
cd neo-cortex
# Install dependencies
npm install
# Start development server
npm run devOpen http://localhost:3000 to view the blog.
npm run build
npm startneo-cortex-blog/
├── app/ # Next.js App Router pages
│ ├── page.tsx # Homepage
│ ├── blog/ # Blog pages
│ └── contribute/ # Contribution page
├── components/ # React components
│ ├── mdx/ # MDX rendering components
│ └── ui/ # UI components (NeoButton, NeoCard, etc.)
├── content/
│ └── posts/ # MDX blog posts
├── lib/ # Utility functions
└── public/ # Static assets
Create a new .mdx file in content/posts/:
---
title: "Your Post Title"
date: "2024-01-01"
excerpt: "A brief description"
tags: ["ai", "webdev"]
---
Your content here using Markdown...
## Headings, **bold**, *italic*, `code`
- Lists work too
- Like this
```javascript
// Code blocks with syntax highlighting
const hello = "world";