diff --git a/docs/pages/index.mdx b/docs/pages/index.mdx
index 16393c3..191c307 100755
--- a/docs/pages/index.mdx
+++ b/docs/pages/index.mdx
@@ -15,6 +15,7 @@ import { HomePage } from "vocs/components";
See my projects
GitHub
- React timeline
+ Linkedin
+
benoitclement.sand@gmail.com
diff --git a/docs/pages/projects.mdx b/docs/pages/projects.mdx
deleted file mode 100644
index aa40e24..0000000
--- a/docs/pages/projects.mdx
+++ /dev/null
@@ -1,7 +0,0 @@
----
-layout: deafult
----
-
-# Voici mes projets
-
-[OmicsVerse](/omicsverse.mdx)
\ No newline at end of file
diff --git a/docs/pages/projects/index.mdx b/docs/pages/projects/index.mdx
new file mode 100644
index 0000000..f36ead6
--- /dev/null
+++ b/docs/pages/projects/index.mdx
@@ -0,0 +1,19 @@
+---
+layout: deafult
+---
+
+# Here are my projects
+
+## OmicsVerse
+
+The initial aim of the [OmicsVerse portal](https://omicsverse.fr) is to host demo versions of the various data applications I create.
+
+Application source code and documentation for administrators can be found on my [github](https://github.com/clbenoit).
+
+The following sections & pages will host detailed documentation of users.
+
+If you have a genomics-oriented data application to host, don't hesitate to contact me. provided there are resources available.
+
+### [SomaVarDB](/somavardb.mdx)
+
+### [GermlineVarDB](/germlinevardb.mdx)
\ No newline at end of file
diff --git a/docs/pages/omicsverse.mdx b/docs/pages/projects/somavardb.mdx
similarity index 82%
rename from docs/pages/omicsverse.mdx
rename to docs/pages/projects/somavardb.mdx
index 3ecbf0a..cab3495 100644
--- a/docs/pages/omicsverse.mdx
+++ b/docs/pages/projects/somavardb.mdx
@@ -2,6 +2,6 @@
layout: deafult
---
-# OmicsVerse
+# SomaVarDB
Voilà l'exemple d'un premier projet
\ No newline at end of file
diff --git a/vocs.config.ts b/vocs.config.ts
index 98e3feb..67e69ad 100644
--- a/vocs.config.ts
+++ b/vocs.config.ts
@@ -1,19 +1,19 @@
import { defineConfig } from 'vocs'
export default defineConfig({
- title: 'Portfolio',
+ title: 'Home',
topNav: [
{ text: 'CV', link: '/CV' },
{ text: 'Blog', link: '/blog' }
],
sidebar: [
{
- text: 'Projets',
+ text: 'Projects',
link: '/projects',
},
{
- text: 'Projet n°1',
- link: '/project1',
- },
+ text: 'SomaVarDB',
+ link: '/projects/somavardb',
+ }
],
})