src/config/businessCard.config.local.ts gelöscht
This commit is contained in:
parent
629da34064
commit
f653cee945
|
|
@ -1,32 +0,0 @@
|
||||||
import type { BusinessCard } from '../store/types';
|
|
||||||
import businessCardImage from '../assets/sascha.png';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* LOCAL STUB FILE
|
|
||||||
*
|
|
||||||
* This file serves as a stub for local configuration.
|
|
||||||
* To use your own configuration:
|
|
||||||
*
|
|
||||||
* 1. Copy businessCard.config.local.example.ts
|
|
||||||
* 2. Rename the copy to businessCard.config.local.ts (replace this file)
|
|
||||||
* 3. Edit it with your personal information
|
|
||||||
* 4. This file is git-ignored, so your data stays local!
|
|
||||||
*
|
|
||||||
* For now, it just exports the default config.
|
|
||||||
*/
|
|
||||||
|
|
||||||
export const localBusinessCard: BusinessCard = {
|
|
||||||
name: 'Sascha Bach',
|
|
||||||
title: 'Web Engineer',
|
|
||||||
company: 'Freelancer',
|
|
||||||
email: 'freelancer@sascha-bach.de',
|
|
||||||
phone: '+49 179 9364867',
|
|
||||||
website: 'https://sascha-bach.de',
|
|
||||||
image: businessCardImage,
|
|
||||||
bio: 'Passionate about Webapps and Accessibility',
|
|
||||||
socialLinks: [
|
|
||||||
{ platform: 'LinkedIn', url: 'https://linkedin.com/in/saschabach', icon: 'Linkedin' },
|
|
||||||
{ platform: 'GitHub', url: 'https://codeberg.org/saschab', icon: 'Github' },
|
|
||||||
{ platform: 'Portfolio', url: 'https://sascha-bach.de', icon: 'Globe' },
|
|
||||||
],
|
|
||||||
};
|
|
||||||
Loading…
Reference in New Issue