Skip to content

Commit

Permalink
Revert "CV page"
Browse files Browse the repository at this point in the history
This reverts commit 6080194.
  • Loading branch information
et0and committed Feb 12, 2025
1 parent f203ab7 commit 004d3ff
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 242 deletions.
25 changes: 25 additions & 0 deletions prisma/schema.prisma
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// This is your Prisma schema file,
// learn more about it in the docs: https://pris.ly/d/prisma-schema

// Looking for ways to speed up your queries, or scale easily with your serverless or edge functions?
// Try Prisma Accelerate: https://pris.ly/cli/accelerate-init

generator client {
provider = "prisma-client-js"
}

datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
directUrl = env("DIRECT_URL")
}

model PageView {
id Int @id @default(autoincrement())
pagePath String
timestamp DateTime @default(now())
filtered Boolean @default(false)
@@index([pagePath])
@@index([filtered])
}
15 changes: 0 additions & 15 deletions src/app/cv/layout.tsx

This file was deleted.

227 changes: 0 additions & 227 deletions src/app/cv/page.tsx

This file was deleted.

0 comments on commit 004d3ff

Please sign in to comment.