Skip to content

Commit

Permalink
feat: add team section
Browse files Browse the repository at this point in the history
  • Loading branch information
berkaltiok committed Oct 4, 2024
1 parent 33a5769 commit e296917
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 4 deletions.
10 changes: 9 additions & 1 deletion .vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,13 @@ export const sidebar = [
]

export default defineConfig({
srcDir: "src",

lang: "en-US",
title: "Parsek",
description: "Rest API Build Structure for Kotlin",
srcDir: "src",

lastUpdated: true,

head: [
["meta", { name: "theme-color", content: "#000000" }],
Expand Down Expand Up @@ -80,6 +83,11 @@ export default defineConfig({
provider: "local"
},

editLink: {
pattern: "https://github.com/StatuParsek/website/edit/main/:path",
text: "Edit this page on GitHub"
},

footer: {
copyright: `Copyright © 2023 - ${new Date().getFullYear()} Parsek`
}
Expand Down
33 changes: 30 additions & 3 deletions src/guide/what-is-parsek.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,30 @@
# What is Parsek?
<script setup>
import { VPTeamMembers } from 'vitepress/theme';

## What is?
Parsek is a core platform designed for back-end applications, allowing developers to focus on their projects without worrying about speed optimizations, best practices, or scalability.
const members = [
{
avatar: 'https://github.com/duruer.png',
name: 'Ahmet Enes Duruer',
title: 'Creator',
links: [
{ icon: 'github', link: 'https://github.com/duruer' },
{ icon: 'instagram', link: 'https://www.instagram.com/ae.duruer' },
]
},
{
avatar: 'https://github.com/berkaltiok.png',
name: 'Berk Altiok',
title: 'Creator',
links: [
{ icon: 'github', link: 'https://github.com/berkaltiok' },
{ icon: 'twitter', link: 'https://twitter.com/altiokberk' }
]
}
]
</script>

# What is Parsek?
Parsek is a core platform designed for back-end applications, allowing developers to focus on their projects without worrying about speed optimizations, best practices, or scalability.
By offering reusable plugins and rapid development tools, Parsek eliminates the need to write the same feature code for each project, ensuring faster, more efficient development while maintaining high performance.

## Philosophy
Expand Down Expand Up @@ -41,3 +63,8 @@ For individuals who would rather learn by doing.

### **Check out the Examples**
Discover common examples of core features and official plugins available for Parsek.

## Our Team
Say hello to our awesome team.

<VPTeamMembers size="small" :members="members" />

0 comments on commit e296917

Please sign in to comment.