shadcn & theme toggle

This commit is contained in:
2024-09-15 16:38:21 -05:00
parent a8451c8afb
commit 79f978230d
16 changed files with 1352 additions and 130 deletions

View File

@@ -1,6 +1,3 @@
// Example model schema from the Drizzle docs
// https://orm.drizzle.team/docs/sql-schema-declaration
import { sql } from "drizzle-orm";
import {
index,
@@ -10,13 +7,7 @@ import {
varchar,
} from "drizzle-orm/pg-core";
/**
* This is an example of how to use the multi-project schema feature of Drizzle ORM. Use the same
* database instance for multiple projects.
*
* @see https://orm.drizzle.team/docs/goodies#multi-project-schema
*/
export const createTable = pgTableCreator((name) => `resume_website_${name}`);
export const createTable = pgTableCreator((name) => `${name}`);
export const posts = createTable(
"post",