diff --git a/LICENSE b/LICENSE index 6dce2ea..64eeb88 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2024 mrkvon +Copyright (c) 2024 Solid Couch Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 0db0981..57d9976 100644 --- a/README.md +++ b/README.md @@ -1,37 +1,5 @@ -# Markdown Pages +# Solid Couch -Quickly create and deploy static markdown pages with Next.js +Decentralized hospitality exchange built with [Solid Protocol](https://solidproject.org). Soon, you can also start a community! -## Quick start - -### Clone this repository - -``` -git clone https://github.com/mrkvon/mdpages.git -``` - -### Create contents - -- add and change content in `src/content` -- change logo in `src/assets/logo.png`, favicon will be generated from it -- change 404 page in `src/app/404/page.tsx` - -### Configure - -Copy `.env.local.sample` to `.env.local` and change the variables - -You can set up the same variables in your GitHub repository for production - -### Preview - -```sh -yarn dev -``` - -### Deploy to GitHub pages - -- push the code with your new content to your repository -- set up environment variables in your repository settings -- set up github pages in your repository settings -- if you have custom domain, you need to create DNS records pointing it to github pages, make sure to also set up `HOSTNAME` environment variable -- re-run _Build & Deploy to gh_pages_ workflow +It's a work in progress. Check out our [github](https://github.com/solidcouch). diff --git a/package.json b/package.json index 6780b98..6c229a5 100644 --- a/package.json +++ b/package.json @@ -13,8 +13,8 @@ "license": "MIT", "private": true, "scripts": { - "dev": "yarn favicon & next dev", - "build": "yarn favicon & next build", + "dev": "yarn favicon && next dev", + "build": "yarn favicon && next build", "start": "next start", "lint": "next lint", "cname": "node bin/generateCNAME.js", diff --git a/src/app/favicon.ico b/src/app/favicon.ico index b640d33..c9f1c64 100644 Binary files a/src/app/favicon.ico and b/src/app/favicon.ico differ diff --git a/src/app/layout.module.scss b/src/app/layout.module.scss index 6be818e..6286902 100644 --- a/src/app/layout.module.scss +++ b/src/app/layout.module.scss @@ -27,5 +27,10 @@ gap: 2rem; padding-top: 2rem; padding-bottom: 1rem; + + .attribution { + font-size: smaller; + color: gray; + } } } diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 59cf223..658db6c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -21,14 +21,24 @@ export default function RootLayout({
- - + + {"logo"}
{children}
diff --git a/src/assets/logo.png b/src/assets/logo.png index 461fe97..3c4d1dd 100644 Binary files a/src/assets/logo.png and b/src/assets/logo.png differ diff --git a/src/content/about.md b/src/content/about.md index 5580df9..4b51d64 100644 --- a/src/content/about.md +++ b/src/content/about.md @@ -1,3 +1 @@ # About - -This is an about page. You can add more pages like this.