Skip to content

Commit

Permalink
Merge branch 'main' into feat/react-timeline
Browse files Browse the repository at this point in the history
  • Loading branch information
clbenoit authored Feb 5, 2024
2 parents df57c28 + 13771e6 commit d71bb0c
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 14 deletions.
3 changes: 2 additions & 1 deletion docs/pages/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import { HomePage } from "vocs/components";
<HomePage.Buttons>
<HomePage.Button href="/projects" variant="accent">See my projects</HomePage.Button>
<HomePage.Button href="https://github.com/clbenoit">GitHub</HomePage.Button>
<HomePage.Button href="/timeline">React timeline</HomePage.Button>
<HomePage.Button href="https://linkedin.com/in/clement-benoit">Linkedin</HomePage.Button>
</HomePage.Buttons>
<h2 href="mailto:your@email.com" variant="email-link">benoitclement.sand@gmail.com</h2>
</HomePage.Root>
7 changes: 0 additions & 7 deletions docs/pages/projects.mdx

This file was deleted.

19 changes: 19 additions & 0 deletions docs/pages/projects/index.mdx
Original file line number Diff line number Diff line change
@@ -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)
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
layout: deafult
---

# OmicsVerse
# SomaVarDB

Voilà l'exemple d'un premier projet
10 changes: 5 additions & 5 deletions vocs.config.ts
Original file line number Diff line number Diff line change
@@ -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',
}
],
})

0 comments on commit d71bb0c

Please sign in to comment.