diff --git a/README.html b/README.html
new file mode 100644
index 0000000..f0d39e2
--- /dev/null
+++ b/README.html
@@ -0,0 +1,145 @@
+
+
+
+
+ Next.js Portfolio Template with Docker
+
+
+
+ Next.js Portfolio Template with Docker
+
+ Modern portfolio website template built with Next.js, Tailwind CSS, and Docker.
+
+ Features
+
+ - Next.js 14+ with App Router
+ - Tailwind CSS for styling
+ - Docker multi-stage builds
+ - PNPM package manager
+ - Production-ready configuration
+ - Contact form component
+ - Responsive design
+
+
+ Core Dependencies
+
+ - Next.js 14 (App Router)
+ - React 18
+ - Tailwind CSS 3
+ - PNPM 8
+ - TypeScript 5
+ - Lucide React Icons
+ - PostCSS 8
+
+
+ Configuration Files
+
+ Git Configuration
+ .gitignore
+ node_modules/
+.next/
+.env*
+.DS_Store
+*.pem
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+.pnpm-debug.log*
+.vercel
+
+ Docker Configuration
+ .dockerignore
+ node_modules
+.next
+.git
+.env*
+
+ docker-compose.yml (Production)
+ version: '3.8'
+services:
+ web:
+ build:
+ context: .
+ dockerfile: Dockerfile
+ ports:
+ - "805:805"
+ environment:
+ - NODE_ENV=production
+ - PORT=805
+ restart: unless-stopped
+
+ docker-compose.dev.yml (Development)
+ version: '3.8'
+services:
+ web-dev:
+ build:
+ context: .
+ dockerfile: Dockerfile.dev
+ ports:
+ - "3000:3000"
+ volumes:
+ - .:/app
+ - /app/node_modules
+ - /app/.next
+ environment:
+ - NODE_ENV=development
+ command: pnpm dev
+
+ Development Setup
+
+ - Install PNPM:
corepack enable && corepack prepare pnpm@latest --activate
+ - Install dependencies:
pnpm install
+ - Run development server:
docker compose -f docker-compose.dev.yml up
+
+
+ Production Deployment
+
+ - Build and run:
docker compose up -d
+ - Access site on port 805
+
+
+ Portainer Deployment Steps
+
+ - Add stack in Portainer
+ - Configure GitHub repository access
+ - Set compose path to docker-compose.yml
+ - Deploy and monitor through Portainer UI
+
+
+ Project Structure
+
+ /src/app - Next.js pages and routes
+ /src/components - Reusable React components
+ /src/styles - Global styles and Tailwind config
+
+
+ Best Practices
+
+ - Use PNPM for consistent dependency management
+ - Follow Next.js App Router patterns
+ - Maintain separate Docker configurations for dev/prod
+ - Keep sensitive data in .env files (not in repository)
+ - Use multi-stage builds for production
+
+
+
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..be5e75e
--- /dev/null
+++ b/README.md
@@ -0,0 +1,44 @@
+# Next.js Portfolio Template with Docker
+
+Modern portfolio website template built with Next.js, Tailwind CSS, and Docker.
+
+## Features
+- Next.js 14+ with App Router
+- Tailwind CSS for styling
+- Docker multi-stage builds
+- PNPM package manager
+- Production-ready configuration
+- Responsive design
+
+## Core Dependencies
+- Next.js 14 (App Router)
+- React 18
+- Tailwind CSS 3
+- PNPM 8
+- TypeScript 5
+- Lucide React Icons
+- PostCSS 8
+
+## Development Setup
+1. Install PNPM: `corepack enable && corepack prepare pnpm@latest --activate`
+2. Install dependencies: `pnpm install`
+3. Run development server: `docker compose -f docker-compose.dev.yml up`
+
+## Production Deployment
+1. Build and run: `docker compose up -d`
+2. Access site on port 805
+
+## Docker Configurations
+- `docker-compose.yml` - Production deployment
+- `docker-compose.dev.yml` - Local development with hot reload
+- `docker-compose.staging.yml` - Staging environment
+
+## Portainer Deployment
+1. Add repository to Portainer
+2. Use `docker-compose.yml` as compose path
+3. Deploy stack
+
+## Structure
+- `/src/app` - Next.js pages and routes
+- `/src/components` - Reusable React components
+- `/src/styles` - Global styles and Tailwind config
diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index a0c3a3d..57b5186 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -4,15 +4,16 @@ export default function AboutPage() {
return (
+
+ About FINLION
+
+
-
-
- About FINLION
-
-
+
+
A business & financial consulting firm since 1978
-
+
FINLION has been serving the needs of individuals and small businesses since 1978. Originally formed as an income tax practice in Los Angeles, California, the firm specializes in business startups, accounting and income taxes, financial management, and personal financial planning.
@@ -34,4 +35,4 @@ export default function AboutPage() {
);
-}
\ No newline at end of file
+}