Skip to content

Commit 4605d85

Browse files
committed
feat: initialize NextJS frontend with UI components and dashboard layout
1 parent 3225ff0 commit 4605d85

84 files changed

Lines changed: 9043 additions & 7053 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

frontend-nextjs/components.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"rsc": true,
55
"tsx": true,
66
"tailwind": {
7-
"config": "tailwind.config.js",
7+
"config": "tailwind.config.ts",
88
"css": "src/app/globals.css",
99
"baseColor": "neutral",
1010
"cssVariables": true,

frontend-nextjs/lib/utils.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import { clsx, type ClassValue } from "clsx"
2+
import { twMerge } from "tailwind-merge"
3+
4+
export function cn(...inputs: ClassValue[]) {
5+
return twMerge(clsx(inputs))
6+
}

frontend-nextjs/next.config.mjs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/** @type {import('next').NextConfig} */
2+
const nextConfig = {
3+
eslint: {
4+
ignoreDuringBuilds: true,
5+
},
6+
typescript: {
7+
ignoreBuildErrors: true,
8+
},
9+
images: {
10+
unoptimized: true,
11+
},
12+
}
13+
14+
export default nextConfig

frontend-nextjs/next.config.ts

Lines changed: 0 additions & 22 deletions
This file was deleted.

0 commit comments

Comments
 (0)