From 871df4625fb31f81b6346bf1e929bff08ebd79fb Mon Sep 17 00:00:00 2001 From: DerTyp7 Date: Sun, 19 Oct 2025 01:39:21 +0200 Subject: [PATCH] add default config --- .gitignore | 3 ++- data/config.json | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+), 1 deletion(-) create mode 100644 data/config.json diff --git a/.gitignore b/.gitignore index 470abc8..ce357fb 100644 --- a/.gitignore +++ b/.gitignore @@ -19,7 +19,8 @@ # production /build -/data +/data/* +!/data/config.json # misc .DS_Store diff --git a/data/config.json b/data/config.json new file mode 100644 index 0000000..4d573c3 --- /dev/null +++ b/data/config.json @@ -0,0 +1,36 @@ +{ + "home": { + "headline": "Portfolio", + "text": "Just a hobby photographer sharing moments that catch my eye.", + "buttonText": "Visit Gallery" + }, + "contact": { + "headline": "Contact Me", + "links": [ + { + "url": "https://www.instagram.com/f1r3wave", + "hoverColor": "rgba(211, 122, 238, 0.25)", + "image": { + "src": "https://upload.wikimedia.org/wikipedia/commons/a/a5/Instagram_icon.png", + "alt": "Instagram Logo" + } + }, + { + "url": "mailto:mail@mail.com", + "hoverColor": "rgba(78, 172, 248, 0.25)", + "image": { + "src": "https://static.vecteezy.com/system/resources/thumbnails/014/440/980/small_2x/email-message-icon-design-in-blue-circle-png.png", + "alt": "Email Icon" + } + } + ], + "imprint": { + "enable": false, + "headline": "Imprint / Legal Notice", + "name": "[Your Full Name]", + "address": "[Your Full Address: Street and House Number, Postcode City]", + "country": "[YourCountry (e.g., Germany)]", + "email": "[Your E-Mail Address]" + } + } +} \ No newline at end of file