Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@
# Dependencies
node_modules/
/.pnp
.pnp.js

# Testing
/coverage

# Next.js
/.next/
/out/

# Production
/build
/dist

# Misc
.DS_Store
*.pem

# Debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Local env files
.env*.local

# Vercel
.vercel

# TypeScript
*.tsbuildinfo
next-env.d.ts

# Build and Release Folders
bin-debug/
bin-release/
Expand Down
30 changes: 30 additions & 0 deletions app/globals.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}

html,
body {
max-width: 100vw;
overflow-x: hidden;
}

body {
color: #fff;
background: #000;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

a {
color: #ff6b00;
text-decoration: none;
}

a:hover {
text-decoration: underline;
}
23 changes: 23 additions & 0 deletions app/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import type { Metadata } from 'next'
import { Analytics } from '@vercel/analytics/next'
import './globals.css'

export const metadata: Metadata = {
title: 'ACoolECOSYSTEM',
description: 'A trust-aligned, AI-native operating network for founders, creators, communities, and organizations.',
}

export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body>
{children}
<Analytics />
</body>
</html>
)
}
62 changes: 62 additions & 0 deletions app/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
export default function Home() {
return (
<main style={{
minHeight: '100vh',
display: 'flex',
flexDirection: 'column',
alignItems: 'center',
justifyContent: 'center',
padding: '2rem'
}}>
<div style={{ textAlign: 'center', maxWidth: '800px' }}>
<h1 style={{
fontSize: '3rem',
marginBottom: '1rem',
background: 'linear-gradient(135deg, #ff6b00 0%, #ff9500 100%)',
WebkitBackgroundClip: 'text',
WebkitTextFillColor: 'transparent',
backgroundClip: 'text'
}}>
🟠 ACoolECOSYSTEM
</h1>
<p style={{ fontSize: '1.25rem', marginBottom: '2rem', color: '#999' }}>
A trust-aligned, AI-native operating network for founders, creators, communities, and organizations.
</p>
<div style={{ display: 'flex', gap: '1rem', justifyContent: 'center', flexWrap: 'wrap' }}>
<a
href="https://github.com/ACoolNerd/ACoolECOSYSTEM"
target="_blank"
rel="noopener noreferrer"
style={{
padding: '0.75rem 1.5rem',
background: '#ff6b00',
color: '#fff',
borderRadius: '8px',
fontWeight: 'bold'
}}
>
View on GitHub
</a>
<a
href="http://www.ACoolNERD.com"
target="_blank"
rel="noopener noreferrer"
style={{
padding: '0.75rem 1.5rem',
background: 'transparent',
color: '#ff6b00',
border: '2px solid #ff6b00',
borderRadius: '8px',
fontWeight: 'bold'
}}
>
ACoolNERD.com
</a>
</div>
<div style={{ marginTop: '3rem', color: '#666', fontSize: '0.875rem' }}>
<p>Build in public. Protect what matters. Execute with precision.</p>
</div>
</div>
</main>
)
}
7 changes: 7 additions & 0 deletions next.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import type { NextConfig } from 'next'

const nextConfig: NextConfig = {
/* config options here */
}

export default nextConfig
Loading