Skip to content

Commit

Permalink
feat: make logo round
Browse files Browse the repository at this point in the history
  • Loading branch information
mukezhz committed Jul 9, 2024
1 parent fa56f6e commit 367159d
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
6 changes: 4 additions & 2 deletions docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { defineConfig, HeadConfig } from "vitepress";

// https://vitepress.dev/reference/site-config
export default defineConfig({

title: "GENG",
description: "A tool to generate golang web project.",
themeConfig: {
Expand All @@ -28,7 +27,10 @@ export default defineConfig({
items: [
{ text: "How to use?", link: "/how-to-use" },
{ text: "Generate a project", link: "/generate-project" },
{ text: "Generate a project using config", link: "/generate-project-config" },
{
text: "Generate a project using config",
link: "/generate-project-config",
},
{ text: "Start the project", link: "/start-project" },
{ text: "Project Folder structure", link: "/folder-structure" },
{ text: "Generate a module", link: "/generate-module" },
Expand Down
3 changes: 3 additions & 0 deletions docs/.vitepress/theme/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
img[src="/geng.webp"] {
border-radius: 50%;
}
4 changes: 4 additions & 0 deletions docs/.vitepress/theme/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import DefaultTheme from 'vitepress/theme'
import './custom.css'

export default DefaultTheme
5 changes: 4 additions & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ hero:
name: "GENerate Golang Project"
text: "A tool to generate golang web project."
tagline: Effortlessly Kickstart Your Golang Web Projects
image:
src: /geng.webp
alt: Gen-G
actions:
- theme: brand
text: Getting started
Expand All @@ -21,5 +24,5 @@ features:
details: Gen-G will help you to generate module which will setup DI
- title: Generate from bru file
details: Gen-G will help you to generate module from Bru file
pageClass: logo-css
---

0 comments on commit 367159d

Please sign in to comment.