generated from Fascinated/nextjs-13-template-with-tailwindcss
Compare commits
No commits in common. "3dd92b78851a8f3bf0f1663e1b1e0ed3f23c4d7a" and "0cfc94e5b83f714746b6e756d8df2fc8f9ca0538" have entirely different histories.
3dd92b7885
...
0cfc94e5b8
15
README.md
15
README.md
@ -1,14 +1,3 @@
|
|||||||
# Simple Links
|
# Personal Website
|
||||||
|
|
||||||
Simple Links is a lightweight alternative to Linktree and others.
|
Currently hosted at [https://fascinated.cc](https://fascinated.cc)
|
||||||
|
|
||||||
## Features
|
|
||||||
|
|
||||||
- Simple and lightweight
|
|
||||||
- Easy to use
|
|
||||||
- Customizable
|
|
||||||
- Open source
|
|
||||||
|
|
||||||
## Installation
|
|
||||||
|
|
||||||
Visit the [wiki](https://git.fascinated.cc/Fascinated/simple-links/wiki/Installation) page for installation instructions.
|
|
||||||
|
29
config.json
29
config.json
@ -1,13 +1,10 @@
|
|||||||
{
|
{
|
||||||
"name": "Your Name",
|
"name": "Lee",
|
||||||
"description": "A description about yourself",
|
"description": "I'm a 20-year-old software engineer from the UK, and my true passion lies in creating and exploring the endless possibilities within my homelab.",
|
||||||
"avatar": "https://cdn.fascinated.cc/KWprz2.jpg",
|
"avatar": "https://cdn.fascinated.cc/yJQN3D.webp",
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"title": "Your Name",
|
"title": "fascinated.cc",
|
||||||
"description": "website description"
|
"description": "I'm a 20-year-old software engineer from the UK"
|
||||||
},
|
|
||||||
"options": {
|
|
||||||
"showSourceLink": true
|
|
||||||
},
|
},
|
||||||
"links": [
|
"links": [
|
||||||
{
|
{
|
||||||
@ -18,6 +15,22 @@
|
|||||||
"hover": "bg-green-600"
|
"hover": "bg-green-600"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"title": "Discord",
|
||||||
|
"url": "https://discord.gg/yjj2U3ctEG",
|
||||||
|
"color": {
|
||||||
|
"normal": "bg-violet-700",
|
||||||
|
"hover": "bg-violet-600"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "Twitch",
|
||||||
|
"url": "https://twitch.tv/fascinated_",
|
||||||
|
"color": {
|
||||||
|
"normal": "bg-purple-700",
|
||||||
|
"hover": "bg-purple-600"
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"title": "Documentation",
|
"title": "Documentation",
|
||||||
"url": "https://docs.fascinated.cc",
|
"url": "https://docs.fascinated.cc",
|
||||||
|
@ -2,14 +2,12 @@ version: "3.4"
|
|||||||
|
|
||||||
services:
|
services:
|
||||||
next-app:
|
next-app:
|
||||||
build: https://git.fascinated.cc/Fascinated/simple-links.git
|
build: https://git.fascinated.cc/Fascinated/personal-website.git
|
||||||
# Use this below if you want to build the image locally (you need to clone the repo first)
|
# Use this if you want to build the image locally
|
||||||
# build: .
|
# build: .
|
||||||
# image: fascinated/simple-links
|
# image: fascinated/personal-website
|
||||||
restart: always
|
restart: always
|
||||||
environment:
|
environment:
|
||||||
NODE_ENV: production
|
NODE_ENV: production
|
||||||
ports:
|
ports:
|
||||||
- 3000:3000
|
- 3000:3000
|
||||||
volumes:
|
|
||||||
- ./config.json:/usr/src/app/config.json
|
|
||||||
|
@ -40,16 +40,14 @@ export default function Home() {
|
|||||||
})}
|
})}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{Config.options.showSourceLink && (
|
|
||||||
<h1 className="mt-5 text-blue-300">
|
<h1 className="mt-5 text-blue-300">
|
||||||
<a
|
<a
|
||||||
href="https://git.fascinated.cc/Fascinated/simple-links"
|
href="https://git.fascinated.cc/Fascinated/personal-website"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
>
|
>
|
||||||
View the website source here
|
View the website source here
|
||||||
</a>
|
</a>
|
||||||
</h1>
|
</h1>
|
||||||
)}
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
|
Loading…
Reference in New Issue
Block a user