diff --git a/.gitignore b/.gitignore
index 646570b..bd0a3bb 100644
--- a/.gitignore
+++ b/.gitignore
@@ -40,4 +40,5 @@ yarn-error.log*
*.tsbuildinfo
next-env.d.ts
-/base/
\ No newline at end of file
+/base/
+/src/app/testenv/
diff --git a/src/app/page.tsx b/src/app/page.tsx
index d4590d2..dcbf80b 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -48,7 +48,7 @@ export default function Home() {
)
- infomaniak (cuz 77.192.72.192 is hard to remember)
'' Why need a whole earth if you're already in the best place you'll ever be ,, -me on a random friday
> diff --git a/src/app/portfolio/page.tsx b/src/app/portfolio/page.tsx new file mode 100644 index 0000000..3a09d9a --- /dev/null +++ b/src/app/portfolio/page.tsx @@ -0,0 +1,7 @@ +export default function Portfolio() { + return ( + <> + + > + ) +} \ No newline at end of file diff --git a/src/components/project.tsx b/src/components/project.tsx new file mode 100644 index 0000000..8dea5f1 --- /dev/null +++ b/src/components/project.tsx @@ -0,0 +1,11 @@ +interface ProjectSpecs { + name: string; + link: string; + image: React.ReactNode; + description: string; + tags: +} + +export function Project({ name, link, image, description, tags }: ProjectSpecs) { + +} \ No newline at end of file diff --git a/src/components/tags.tsx b/src/components/tags.tsx new file mode 100644 index 0000000..82355de --- /dev/null +++ b/src/components/tags.tsx @@ -0,0 +1,27 @@ +import TagType from "@/types/tags"; + +interface TagProps { + tag: TagType; +} + +export default function Tag({ tag }: TagProps) { + return ( + <> +{tag.text}
+