From d89f9980bf253bbf91b7a3dbcd704ee378fc3af2 Mon Sep 17 00:00:00 2001 From: M1n-0 Date: Mon, 12 Jan 2026 14:46:18 +0100 Subject: [PATCH] delete portfolio (reworking) --- portfolio/.gitignore | 41 ------------------------------------ portfolio/README.md | 36 ------------------------------- portfolio/eslint.config.mjs | 16 -------------- portfolio/next.config.ts | 7 ------ portfolio/pages/contact.js | 15 ------------- portfolio/pages/index.js | 24 --------------------- portfolio/pages/projects.js | 16 -------------- portfolio/postcss.config.js | 6 ------ portfolio/postcss.config.mjs | 8 ------- portfolio/public/file.svg | 1 - portfolio/public/globe.svg | 1 - portfolio/public/next.svg | 1 - portfolio/public/vercel.svg | 1 - portfolio/public/window.svg | 1 - portfolio/styles/globals.css | 3 --- portfolio/tailwind.config.js | 8 ------- portfolio/tailwind.config.ts | 18 ---------------- portfolio/tsconfig.json | 27 ------------------------ 18 files changed, 230 deletions(-) delete mode 100644 portfolio/.gitignore delete mode 100644 portfolio/README.md delete mode 100644 portfolio/eslint.config.mjs delete mode 100644 portfolio/next.config.ts delete mode 100644 portfolio/pages/contact.js delete mode 100644 portfolio/pages/index.js delete mode 100644 portfolio/pages/projects.js delete mode 100644 portfolio/postcss.config.js delete mode 100644 portfolio/postcss.config.mjs delete mode 100644 portfolio/public/file.svg delete mode 100644 portfolio/public/globe.svg delete mode 100644 portfolio/public/next.svg delete mode 100644 portfolio/public/vercel.svg delete mode 100644 portfolio/public/window.svg delete mode 100644 portfolio/styles/globals.css delete mode 100644 portfolio/tailwind.config.js delete mode 100644 portfolio/tailwind.config.ts delete mode 100644 portfolio/tsconfig.json diff --git a/portfolio/.gitignore b/portfolio/.gitignore deleted file mode 100644 index 5ef6a52..0000000 --- a/portfolio/.gitignore +++ /dev/null @@ -1,41 +0,0 @@ -# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. - -# dependencies -/node_modules -/.pnp -.pnp.* -.yarn/* -!.yarn/patches -!.yarn/plugins -!.yarn/releases -!.yarn/versions - -# testing -/coverage - -# next.js -/.next/ -/out/ - -# production -/build - -# misc -.DS_Store -*.pem - -# debug -npm-debug.log* -yarn-debug.log* -yarn-error.log* -.pnpm-debug.log* - -# env files (can opt-in for committing if needed) -.env* - -# vercel -.vercel - -# typescript -*.tsbuildinfo -next-env.d.ts diff --git a/portfolio/README.md b/portfolio/README.md deleted file mode 100644 index e215bc4..0000000 --- a/portfolio/README.md +++ /dev/null @@ -1,36 +0,0 @@ -This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app). - -## Getting Started - -First, run the development server: - -```bash -npm run dev -# or -yarn dev -# or -pnpm dev -# or -bun dev -``` - -Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. - -You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file. - -This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel. - -## Learn More - -To learn more about Next.js, take a look at the following resources: - -- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. -- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. - -You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome! - -## Deploy on Vercel - -The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. - -Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details. diff --git a/portfolio/eslint.config.mjs b/portfolio/eslint.config.mjs deleted file mode 100644 index c85fb67..0000000 --- a/portfolio/eslint.config.mjs +++ /dev/null @@ -1,16 +0,0 @@ -import { dirname } from "path"; -import { fileURLToPath } from "url"; -import { FlatCompat } from "@eslint/eslintrc"; - -const __filename = fileURLToPath(import.meta.url); -const __dirname = dirname(__filename); - -const compat = new FlatCompat({ - baseDirectory: __dirname, -}); - -const eslintConfig = [ - ...compat.extends("next/core-web-vitals", "next/typescript"), -]; - -export default eslintConfig; diff --git a/portfolio/next.config.ts b/portfolio/next.config.ts deleted file mode 100644 index e9ffa30..0000000 --- a/portfolio/next.config.ts +++ /dev/null @@ -1,7 +0,0 @@ -import type { NextConfig } from "next"; - -const nextConfig: NextConfig = { - /* config options here */ -}; - -export default nextConfig; diff --git a/portfolio/pages/contact.js b/portfolio/pages/contact.js deleted file mode 100644 index 57651a2..0000000 --- a/portfolio/pages/contact.js +++ /dev/null @@ -1,15 +0,0 @@ -export default function Contact() { - return ( -
-

Me Contacter

-

N'hésitez pas à me contacter pour toute collaboration !

-
- - - - -
-
- ); - } - \ No newline at end of file diff --git a/portfolio/pages/index.js b/portfolio/pages/index.js deleted file mode 100644 index db990eb..0000000 --- a/portfolio/pages/index.js +++ /dev/null @@ -1,24 +0,0 @@ -import { useEffect } from "react"; -import { gsap } from "gsap"; -import Link from "next/link"; - -export default function Home() { - useEffect(() => { - gsap.from(".fade-in", { opacity: 0, y: 20, duration: 1 }); - }, []); - - return ( -
-

Bienvenue sur mon Portfolio

-

Infrastructure | Réseau | Automatisation

-
- - Voir mes projets - - - Me contacter - -
-
- ); -} \ No newline at end of file diff --git a/portfolio/pages/projects.js b/portfolio/pages/projects.js deleted file mode 100644 index a0eba6e..0000000 --- a/portfolio/pages/projects.js +++ /dev/null @@ -1,16 +0,0 @@ -export default function Projects() { - return ( -
-

Mes Projets

- -
- ); - } \ No newline at end of file diff --git a/portfolio/postcss.config.js b/portfolio/postcss.config.js deleted file mode 100644 index 33ad091..0000000 --- a/portfolio/postcss.config.js +++ /dev/null @@ -1,6 +0,0 @@ -module.exports = { - plugins: { - tailwindcss: {}, - autoprefixer: {}, - }, -} diff --git a/portfolio/postcss.config.mjs b/portfolio/postcss.config.mjs deleted file mode 100644 index 1a69fd2..0000000 --- a/portfolio/postcss.config.mjs +++ /dev/null @@ -1,8 +0,0 @@ -/** @type {import('postcss-load-config').Config} */ -const config = { - plugins: { - tailwindcss: {}, - }, -}; - -export default config; diff --git a/portfolio/public/file.svg b/portfolio/public/file.svg deleted file mode 100644 index 004145c..0000000 --- a/portfolio/public/file.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/portfolio/public/globe.svg b/portfolio/public/globe.svg deleted file mode 100644 index 567f17b..0000000 --- a/portfolio/public/globe.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/portfolio/public/next.svg b/portfolio/public/next.svg deleted file mode 100644 index 5174b28..0000000 --- a/portfolio/public/next.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/portfolio/public/vercel.svg b/portfolio/public/vercel.svg deleted file mode 100644 index 7705396..0000000 --- a/portfolio/public/vercel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/portfolio/public/window.svg b/portfolio/public/window.svg deleted file mode 100644 index b2b2a44..0000000 --- a/portfolio/public/window.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/portfolio/styles/globals.css b/portfolio/styles/globals.css deleted file mode 100644 index b5c61c9..0000000 --- a/portfolio/styles/globals.css +++ /dev/null @@ -1,3 +0,0 @@ -@tailwind base; -@tailwind components; -@tailwind utilities; diff --git a/portfolio/tailwind.config.js b/portfolio/tailwind.config.js deleted file mode 100644 index 95b3e1b..0000000 --- a/portfolio/tailwind.config.js +++ /dev/null @@ -1,8 +0,0 @@ -/** @type {import('tailwindcss').Config} */ -module.exports = { - content: ["./pages/**/*.{js,ts,jsx,tsx}"], - theme: { - extend: {}, - }, - plugins: [], -}; diff --git a/portfolio/tailwind.config.ts b/portfolio/tailwind.config.ts deleted file mode 100644 index 1362b88..0000000 --- a/portfolio/tailwind.config.ts +++ /dev/null @@ -1,18 +0,0 @@ -import type { Config } from "tailwindcss"; - -export default { - content: [ - "./pages/**/*.{js,ts,jsx,tsx,mdx}", - "./components/**/*.{js,ts,jsx,tsx,mdx}", - "./app/**/*.{js,ts,jsx,tsx,mdx}", - ], - theme: { - extend: { - colors: { - background: "var(--background)", - foreground: "var(--foreground)", - }, - }, - }, - plugins: [], -} satisfies Config; diff --git a/portfolio/tsconfig.json b/portfolio/tsconfig.json deleted file mode 100644 index d8b9323..0000000 --- a/portfolio/tsconfig.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "compilerOptions": { - "target": "ES2017", - "lib": ["dom", "dom.iterable", "esnext"], - "allowJs": true, - "skipLibCheck": true, - "strict": true, - "noEmit": true, - "esModuleInterop": true, - "module": "esnext", - "moduleResolution": "bundler", - "resolveJsonModule": true, - "isolatedModules": true, - "jsx": "preserve", - "incremental": true, - "plugins": [ - { - "name": "next" - } - ], - "paths": { - "@/*": ["./*"] - } - }, - "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], - "exclude": ["node_modules"] -}