first
This commit is contained in:
27
site.config.mts
Normal file
27
site.config.mts
Normal file
@@ -0,0 +1,27 @@
|
||||
import type { AstroInstance } from 'astro';
|
||||
import { Github, Instagram } from 'lucide-astro';
|
||||
|
||||
export interface SocialLink {
|
||||
name: string;
|
||||
url: string;
|
||||
icon: AstroInstance;
|
||||
}
|
||||
|
||||
export default {
|
||||
title: 'SR',
|
||||
favicon: 'favicon.ico',
|
||||
owner: 'Sara Richard',
|
||||
profileImage: 'profile.webp',
|
||||
socialLinks: [
|
||||
{
|
||||
name: 'GitHub',
|
||||
url: 'https://github.com/rockem/astro-photography-portfolio',
|
||||
icon: Github,
|
||||
} as SocialLink,
|
||||
{
|
||||
name: 'Instagram',
|
||||
url: 'https://www.instagram.com',
|
||||
icon: Instagram,
|
||||
} as SocialLink,
|
||||
],
|
||||
};
|
||||
Reference in New Issue
Block a user