https://github.com/itskavin/witepad-landing
https://github.com/itskavin/witepad-landing
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/itskavin/witepad-landing
- Owner: itskavin
- Created: 2025-06-15T10:03:44.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-13T14:46:58.000Z (11 months ago)
- Last Synced: 2025-07-21T17:16:37.810Z (11 months ago)
- Language: TypeScript
- Size: 1.46 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Witepad Landing Page
This is the landing page for Witepad, separated from the main application.
## Setup
1. Install dependencies:
```bash
npm install
```
2. Set up environment variables:
Create a `.env.local` file with your Supabase credentials:
```
VITE_SUPABASE_URL=your_supabase_url
VITE_SUPABASE_ANON_KEY=your_supabase_anon_key
```
3. Run the development server:
```bash
npm run dev
```
The landing page will be available at `http://localhost:3000`
## Build
To build for production:
```bash
npm run build
```
## Features
- Modern landing page with hero section
- Authentication dialog
- Responsive design
- Dark theme optimized
- Connects authenticated users to the main app
## Main App Integration
When users sign in through the landing page, they are redirected to the main Witepad application running on `http://localhost:8080`.