diff --git a/components/LayoutWrapper.tsx b/components/LayoutWrapper.tsx index 20ee3ae..20675c7 100644 --- a/components/LayoutWrapper.tsx +++ b/components/LayoutWrapper.tsx @@ -1,6 +1,4 @@ -import siteMetadata from '@/data/siteMetadata' import headerNavLinks from '@/data/headerNavLinks' -import Logo from '@/data/logo.svg' import Link from './Link' import SectionContainer from './SectionContainer' import Footer from './Footer' @@ -15,30 +13,14 @@ const LayoutWrapper = ({ children }: Props) => { return (
-
-
- -
-
- -
- {typeof siteMetadata.headerTitle === 'string' ? ( -
- {siteMetadata.headerTitle} -
- ) : ( - siteMetadata.headerTitle - )} -
- -
-
-
+
+
+
{headerNavLinks.map((link) => ( {link.title} diff --git a/components/MobileNav.tsx b/components/MobileNav.tsx index e1c3863..69f9894 100644 --- a/components/MobileNav.tsx +++ b/components/MobileNav.tsx @@ -62,7 +62,7 @@ const MobileNav = () => {
{link.title} diff --git a/data/authors/default.md b/data/authors/default.md index bbeab12..a52dcc5 100644 --- a/data/authors/default.md +++ b/data/authors/default.md @@ -1,16 +1,19 @@ --- name: Augury avatar: /static/images/avatar.png +bannerimage: /static/images/band.jpg email: info@augurymetal.com -twitter: https://twitter.com/augurymetal, -facebook: https://www.facebook.com/augury, -instagram: https://instagram.com/augurymetal, -youtube: https://youtube.com/augurymetal, -spotify: http://open.spotify.com/artist/7Iy3W9Pe1ivZzIM3jZvW59, -applemusic: https://music.apple.com/us/artist/augury/1101253774, -lastfm: https://www.last.fm/music/augury, +twitter: https://twitter.com/augurymetal +facebook: https://www.facebook.com/augury +instagram: https://instagram.com/augurymetal +youtube: https://youtube.com/augurymetal +spotify: http://open.spotify.com/artist/7Iy3W9Pe1ivZzIM3jZvW59 +applemusic: https://music.apple.com/us/artist/augury/1101253774 +lastfm: https://www.last.fm/music/augury --- +# Augury + Augury is a relatively new name in Montréal's musical landscape, yet the very idea of the band was in the air since the musicians met in 1997. But serious stuff began in the winter of 2001/2002 when lead/classical guitarist Mathieu Marcotte left his band Spasme and started auditioning a string of drummers to seriously start a complete outfit. Shortly after, he was joined by soprano vocalist Arianne Fleury and demented bass wizard Dominic "Forest" Lapointe and started to jam complete songs. @@ -25,10 +28,7 @@ Triplet feels and guitar/bass dual and triple harmonies are indeed a staple of A --- -Patrick Loisel has appeared in Kralizec. - -Mathieu Marcotte also appears in Humanoid. - -Antoine Baril has appeared in Symbolic and Deviant Process - -Dominic 'Forest' Lapointe has appeared in Atheretic and Beyond Creation. +- Patrick Loisel has appeared in [Kralizec](https://www.metal-archives.com/bands/Kralizec/6002). +- Mathieu Marcotte also appears in [Spasme](https://www.metal-archives.com/bands/Spasme/436) and Humanoid. +- Antoine Baril has appeared in Symbolic and [Deviant Process](https://www.metal-archives.com/bands/Deviant_Process/3540364841) +- Dominic 'Forest' Lapointe has appeared in [First Fragment](https://www.metal-archives.com/bands/First_Fragment/3540325573), [Atheretic](https://www.metal-archives.com/bands/Atheretic/4479) and [Beyond Creation](https://www.metal-archives.com/bands/Beyond_Creation/3540316039). diff --git a/data/authors/sparrowhawk.md b/data/authors/sparrowhawk.md deleted file mode 100644 index 5cef90b..0000000 --- a/data/authors/sparrowhawk.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -name: Sparrow Hawk -avatar: /static/images/sparrowhawk-avatar.jpg -occupation: Wizard of Earthsea -company: Earthsea -twitter: https://twitter.com/sparrowhawk -linkedin: https://www.linkedin.com/sparrowhawk ---- - -At birth, Ged was given the child-name Duny by his mother. He was born on the island of Gont, as a son of a bronzesmith. His mother died before he reached the age of one. As a small boy, Ged had overheard the village witch, his maternal aunt, using various words of power to call goats. Ged later used the words without an understanding of their meanings, to surprising effect. - -The witch knew that using words of power effectively without understanding them required innate power, so she endeavored to teach him what little she knew. After learning more from her, he was able to call animals to him. Particularly, he was seen in the company of wild sparrowhawks so often that his "use name" became Sparrowhawk. diff --git a/data/blog/guide-to-using-images-in-nextjs.mdx b/data/blog/guide-to-using-images-in-nextjs.mdx index 81a8511..6abbe61 100644 --- a/data/blog/guide-to-using-images-in-nextjs.mdx +++ b/data/blog/guide-to-using-images-in-nextjs.mdx @@ -4,7 +4,6 @@ date: '2020-11-11' tags: ['next js', 'guide'] draft: false summary: 'In this article we introduce adding images in the tailwind starter blog and the benefits and limitations of the next/image component.' -authors: ['sparrowhawk'] --- # Introduction diff --git a/data/blog/introducing-tailwind-nextjs-starter-blog.mdx b/data/blog/introducing-tailwind-nextjs-starter-blog.mdx index ee784f7..70c175e 100644 --- a/data/blog/introducing-tailwind-nextjs-starter-blog.mdx +++ b/data/blog/introducing-tailwind-nextjs-starter-blog.mdx @@ -6,7 +6,6 @@ tags: ['next-js', 'tailwind', 'guide'] draft: false summary: 'Looking for a performant, out of the box template, with all the best in web technology to support your blogging needs? Checkout the Tailwind Nextjs Starter Blog template.' images: ['/static/images/canada/mountains.jpg', '/static/images/canada/toronto.jpg'] -authors: ['default', 'sparrowhawk'] --- ![tailwind-nextjs-banner](/static/images/twitter-card.png) diff --git a/layouts/AuthorLayout.tsx b/layouts/AuthorLayout.tsx index 0cd4c55..0d3a0af 100644 --- a/layouts/AuthorLayout.tsx +++ b/layouts/AuthorLayout.tsx @@ -12,9 +12,7 @@ interface Props { export default function AuthorLayout({ children, frontMatter }: Props) { const { name, - avatar, - occupation, - company, + bannerimage, email, facebook, instagram, @@ -37,16 +35,13 @@ export default function AuthorLayout({ children, frontMatter }: Props) {
avatar -

{name}

-
{occupation}
-
{company}
-
+
diff --git a/pages/_document.tsx b/pages/_document.tsx index ecd2ce6..987553f 100644 --- a/pages/_document.tsx +++ b/pages/_document.tsx @@ -24,7 +24,7 @@ class MyDocument extends Document { - +
diff --git a/public/static/images/avatar.png b/public/static/images/avatar.png index 9ef1293..54b89dd 100644 Binary files a/public/static/images/avatar.png and b/public/static/images/avatar.png differ diff --git a/public/static/images/band.jpg b/public/static/images/band.jpg new file mode 100644 index 0000000..fec1e8c Binary files /dev/null and b/public/static/images/band.jpg differ diff --git a/public/static/images/header-banner.jpg b/public/static/images/header-banner.jpg new file mode 100644 index 0000000..02d4174 Binary files /dev/null and b/public/static/images/header-banner.jpg differ diff --git a/public/static/images/sparrowhawk-avatar.jpg b/public/static/images/sparrowhawk-avatar.jpg deleted file mode 100644 index 7d09105..0000000 Binary files a/public/static/images/sparrowhawk-avatar.jpg and /dev/null differ diff --git a/public/static/images/twitter-card.png b/public/static/images/twitter-card.png index a53cc4a..b922013 100644 Binary files a/public/static/images/twitter-card.png and b/public/static/images/twitter-card.png differ diff --git a/types/AuthorFrontMatter.ts b/types/AuthorFrontMatter.ts index 7e4d86a..db4c4cc 100644 --- a/types/AuthorFrontMatter.ts +++ b/types/AuthorFrontMatter.ts @@ -2,6 +2,7 @@ export type AuthorFrontMatter = { layout?: string name: string avatar: string + bannerimage: string email: string facebook: string instagram: string