Skip to content

Commit

Permalink
CV done
Browse files Browse the repository at this point in the history
  • Loading branch information
JowaDev committed Oct 3, 2024
1 parent 6f5b458 commit f9eedb9
Show file tree
Hide file tree
Showing 20 changed files with 1,838 additions and 373 deletions.
Binary file added bun.lockb
Binary file not shown.
1,436 changes: 1,093 additions & 343 deletions package-lock.json

Large diffs are not rendered by default.

29 changes: 16 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,29 +9,32 @@
"lint": "next lint"
},
"dependencies": {
"@react-three/fiber": "^8.16.8",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@react-three/fiber": "^8.17.9",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"framer-motion": "^11.2.11",
"framer-motion-3d": "^11.2.11",
"framer-motion": "^11.9.0",
"framer-motion-3d": "^11.9.0",
"lucide-react": "^0.378.0",
"next": "^14.2.4",
"next": "^14.2.14",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-resizable-panels": "^2.0.19",
"tailwind-merge": "^2.3.0",
"react-resizable-panels": "^2.1.4",
"sharp": "^0.33.5",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"three": "^0.164.1",
"use-sound": "^4.0.1"
"use-sound": "^4.0.3"
},
"devDependencies": {
"@types/node": "^20.14.8",
"@types/react": "^18.3.3",
"@types/node": "^20.16.10",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"eslint": "^8.57.0",
"eslint": "^8.57.1",
"eslint-config-next": "14.2.3",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.2"
"postcss": "^8.4.47",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.2"
}
}
Binary file added public/img.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/me.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes.
30 changes: 30 additions & 0 deletions src/app/(console)/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import {ReactNode} from "react";
import {GlobalContext} from "@/components/Layout/GlobalContext";
import {ConsoleBackground} from "@/components/Console/ConsoleBackground";
import {Console} from "@/components/Console/Console";
import {CardFan} from "@/components/Card/CardFan";

interface LayoutConsoleProps {
children: ReactNode;
}

export default function LayoutConsole({children}: LayoutConsoleProps) {
return (
<div
className='overflow-y-hidden'
>
<main
className="h-screen w-screen p-12 bg-[#121212] text-white"
>
<GlobalContext>
<ConsoleBackground>
<Console>
{children}
</Console>
</ConsoleBackground>
<CardFan/>
</GlobalContext>
</main>
</div>
)
}
File renamed without changes.
9 changes: 9 additions & 0 deletions src/app/(cv)/cv/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import {ReactNode} from "react";

interface LayoutCVProps {
children: ReactNode;
}

export default function LayoutCV({children}: LayoutCVProps) {
return children
}
5 changes: 5 additions & 0 deletions src/app/(cv)/cv/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import {CV} from "@/components/CV/CV";

export default function CVPage() {
return <CV/>
}
19 changes: 2 additions & 17 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ import "./globals.css";

import {cn} from "@/lib/utils"
import {ReactNode} from "react";
import {Console} from "@/components/Console/Console";
import {GlobalContext} from "@/components/Layout/GlobalContext";
import {ConsoleBackground} from "@/components/Console/ConsoleBackground";
import {CardFan} from "@/components/Card/CardFan";
import Script from "next/script";

const fontSans = Fira_Code({
Expand All @@ -31,22 +27,11 @@ export default function RootLayout({
>
<body
className={cn(
"min-h-screen bg-background antialiased overflow-y-hidden",
"min-h-screen bg-background antialiased",
fontSans.className
)}
>
<main
className="h-screen w-screen p-12 bg-[#121212] text-white"
>
<GlobalContext>
<ConsoleBackground>
<Console>
{children}
</Console>
</ConsoleBackground>
<CardFan/>
</GlobalContext>
</main>
{children}
</body>
<Script
defer
Expand Down
Loading

0 comments on commit f9eedb9

Please sign in to comment.