Skip to content

Commit d65a965

Browse files
committed
feat: implement Premium page with Tailwind and shadcn button
1 parent ed22bea commit d65a965

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

site/src/lib/utils.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { clsx, type ClassValue } from "clsx"
2-
import { twMerge } from "tailwind-merge"
1+
import { type ClassValue, clsx } from "clsx";
2+
import { twMerge } from "tailwind-merge";
33

44
export function cn(...inputs: ClassValue[]) {
5-
return twMerge(clsx(inputs))
5+
return twMerge(clsx(inputs));
66
}

site/tailwind.config.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
const colors = require("tailwindcss/colors");
2+
13
/** @type {import('tailwindcss').Config} */
24
module.exports = {
35
corePlugins: {

0 commit comments

Comments
 (0)