feat: revamped author card
This commit is contained in:
parent
c410c499e1
commit
2211c4bbf3
46 changed files with 566 additions and 426 deletions
|
@ -6,11 +6,22 @@ export type Site = {
|
|||
SITEURL: string
|
||||
}
|
||||
|
||||
export type NavigationLink = {
|
||||
href: string
|
||||
label: string
|
||||
}
|
||||
|
||||
export const SITE: Site = {
|
||||
TITLE: 'astro-erudite',
|
||||
DESCRIPTION:
|
||||
'astro-erudite is a opinionated, no-frills blogging template. Built with Astro.',
|
||||
EMAIL: 'youremail@gmail.com',
|
||||
EMAIL: 'jason@enscribe.dev',
|
||||
NUM_POSTS_ON_HOMEPAGE: 2,
|
||||
SITEURL: 'https://astro-erudite.vercel.app',
|
||||
}
|
||||
|
||||
export const NAV_LINKS: NavigationLink[] = [
|
||||
{ href: '/blog', label: 'blog' },
|
||||
{ href: '/authors', label: 'authors' },
|
||||
{ href: '/about', label: 'about' },
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue