forked from mickasmt/astro-nomy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
152 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
import type { NavMenuConfig } from "@/types"; | ||
|
||
export const navMenuConfig: NavMenuConfig = { | ||
infosNav: [ | ||
{ | ||
title: "Menu", | ||
items: [ | ||
{ | ||
title: "Features", | ||
href: "/#features", | ||
description: "Take a closer look at the project's features.", | ||
}, | ||
{ | ||
title: "Twitter (@miickasmt)", | ||
href: "https://twitter.com/miickasmt", | ||
description: "Follow me to get the latest updates and news.", | ||
external: true, | ||
}, | ||
{ | ||
title: "Source Code", | ||
href: "https://github.com/mickasmt/astro-nomy", | ||
description: "You want to star the repository ? Let's get started!", | ||
external: true, | ||
}, | ||
], | ||
}, | ||
], | ||
examplesNav: [ | ||
{ | ||
title: "Examples", | ||
items: [ | ||
{ | ||
title: "Blog", | ||
href: "/blog", | ||
description: "A Markdown/MDX blog built using Content Collections.", | ||
}, | ||
{ | ||
title: "Docs", | ||
href: "/docs/getting-started", | ||
description: | ||
"A Markdown/MDX documentation site built using Content Collections.", | ||
}, | ||
{ | ||
title: "Authentification", | ||
href: "/login", | ||
description: "Login and register pages for authentification.", | ||
disabled: true, | ||
}, | ||
{ | ||
title: "Dashboard", | ||
href: "/#dashboard", | ||
description: "A dashboard panel after authentification.", | ||
disabled: true, | ||
}, | ||
{ | ||
title: "Ecommerce", | ||
href: "/#examples/ecommerce", | ||
description: | ||
"Different pages of an ecommerce app fetching data from an API.", | ||
disabled: true, | ||
}, | ||
{ | ||
title: "Social Media", | ||
href: "/#examples/social-media", | ||
description: "Different components & pages of an social media app.", | ||
disabled: true, | ||
}, | ||
], | ||
}, | ||
], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters