Skip to content

Commit 0fbdde5

Browse files
committed
Upload Project Files
0 parents  commit 0fbdde5

20 files changed

Lines changed: 2911 additions & 0 deletions

.editorconfig

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[*]
2+
indent_style = space
3+
indent_size = 4
4+
tab_width = 4
5+
end_of_line = lf
6+
charset = utf-8
7+
trim_trailing_whitespace = true
8+
insert_final_newline = true
9+
max_line_length = off
10+
11+
[*.yml]
12+
indent_size = 2
13+
14+
[*.json]
15+
indent_size = 2

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: 'Build and Deploy'
2+
on:
3+
push:
4+
branches: [ "ver/latest" ]
5+
workflow_dispatch:
6+
permissions:
7+
contents: read
8+
pages: write
9+
id-token: write
10+
jobs:
11+
build:
12+
runs-on: 'ubuntu-latest'
13+
steps:
14+
- name: 'Checkout Repository'
15+
uses: 'actions/checkout@v4'
16+
- name: 'Setup Node.js'
17+
uses: 'actions/setup-node@v4'
18+
with:
19+
node-version: '20'
20+
cache: 'npm'
21+
- name: 'Install Dependencies'
22+
run: 'npm ci'
23+
- name: 'Build Project'
24+
run: 'npm run build'
25+
- name: 'Upload Artifact'
26+
uses: 'actions/upload-pages-artifact@v4'
27+
with:
28+
path: './out'
29+
deploy:
30+
needs: build
31+
runs-on: 'ubuntu-latest'
32+
environment:
33+
name: 'github-pages'
34+
url: ${{ steps.deployment.outputs.page_url }}
35+
steps:
36+
- name: 'Deploy to GitHub Pages'
37+
id: 'deployment'
38+
uses: 'actions/deploy-pages@v4'

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
**/.idea/*
2+
**/.next/*
3+
**/node_modules/*
4+
**/out/*
5+
6+
**/*.env*

LICENSE

Lines changed: 661 additions & 0 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
**⚠️ Important!**
2+
3+
This project is currently under construction, please check back later.

components.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"$schema": "https://ui.shadcn.com/schema.json",
3+
"style": "new-york",
4+
"rsc": true,
5+
"tsx": true,
6+
"tailwind": {
7+
"config": "",
8+
"css": "src/styles/globals.css",
9+
"baseColor": "neutral",
10+
"cssVariables": true,
11+
"prefix": ""
12+
},
13+
"iconLibrary": "lucide",
14+
"aliases": {},
15+
"registries": {}
16+
}

next-env.d.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/// <reference types="next" />
2+
/// <reference types="next/image-types/global" />
3+
import "./.next/types/routes.d.ts";
4+
5+
// NOTE: This file should not be edited
6+
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

next.config.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import type { NextConfig } from "next"
2+
3+
const nextConfig: NextConfig = {
4+
reactCompiler: true,
5+
output: 'export',
6+
images: {
7+
unoptimized: true
8+
},
9+
trailingSlash: true
10+
}
11+
12+
export default nextConfig

0 commit comments

Comments
 (0)