chore: fix merge conflicts
This commit is contained in:
commit
95eb179803
2 changed files with 7 additions and 5 deletions
|
@ -47,7 +47,7 @@ export const footerLinks: Link[] = [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: 'Mastodon',
|
text: 'Mastodon',
|
||||||
url: 'https://fosstodon.org/@ayo',
|
url: 'https://social.ayco.io/public/local',
|
||||||
icon: 'mastodon',
|
icon: 'mastodon',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -60,7 +60,9 @@ export const footerLinks: Link[] = [
|
||||||
url: 'https://github.com/ayoayco',
|
url: 'https://github.com/ayoayco',
|
||||||
icon: 'github',
|
icon: 'github',
|
||||||
},
|
},
|
||||||
|
]
|
||||||
|
|
||||||
|
export const socialLinks: Link[] = [
|
||||||
/**
|
/**
|
||||||
* TODO: add all socials to about page
|
* TODO: add all socials to about page
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
import Layout from '../../../layouts/Layout.astro'
|
import Layout from '../../layouts/Layout.astro'
|
||||||
import Footer from '../../../components/Footer.astro'
|
import Footer from '../../components/Footer.astro'
|
||||||
import Posts from '../../../components/Posts.astro'
|
import Posts from '../../components/Posts.astro'
|
||||||
import type { AstroInstance } from 'astro'
|
import type { AstroInstance } from 'astro'
|
||||||
|
|
||||||
// const posts = await Astro.glob('./posts/*.astro')
|
// const posts = await Astro.glob('./posts/*.astro')
|
||||||
const posts: AstroInstance[] = Object.values<AstroInstance>(
|
const posts: AstroInstance[] = Object.values<AstroInstance>(
|
||||||
import.meta.glob('./posts/*.astro', { eager: true })
|
import.meta.glob('./and-then/posts/*.astro', { eager: true })
|
||||||
)
|
)
|
||||||
const title = 'Previously...'
|
const title = 'Previously...'
|
||||||
---
|
---
|
Loading…
Reference in a new issue