Skip to content
This repository was archived by the owner on Feb 7, 2023. It is now read-only.

Commit 57c1a90

Browse files
Split pages
1 parent 0e3fad0 commit 57c1a90

14 files changed

+300
-188
lines changed

docs/index.bundle.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/index.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

+62-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010
"preview": "vite preview"
1111
},
1212
"dependencies": {
13-
"preact": "^10.11.0"
13+
"history": "^5.3.0",
14+
"preact": "^10.11.0",
15+
"preact-router": "^4.1.0"
1416
},
1517
"devDependencies": {
1618
"@preact/preset-vite": "^2.4.0",

src/app.jsx

-144
This file was deleted.

src/components/footer.jsx

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
export default () => {
2+
return <>
3+
<div class="mt-5"></div>
4+
<footer class="site-footer">
5+
<div class="container">
6+
<div class="legalese">
7+
Cloudy CMS is a product by Bjorn Goransson Invest AB. Company ISIN: SE559204344101<br />
8+
Contact: +46 (0)76 067 6064 [email protected] 2022 © Bjorn Goransson Invest AB
9+
</div>
10+
</div>
11+
</footer>
12+
</>;
13+
}

src/components/header.jsx

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
2+
export default () => {
3+
return <>
4+
<div class="pt-5"></div>
5+
<nav class="navbar fixed-top navbar-expand-lg navbar-dark bg-dark">
6+
<div class="container">
7+
<a class="navbar-brand" href="/">☁ Cloudy CMS</a>
8+
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
9+
<span class="navbar-toggler-icon"></span>
10+
</button>
11+
<div class="collapse navbar-collapse" id="navbarSupportedContent">
12+
<ul class="navbar-nav">
13+
<li class="nav-item">
14+
<a class="nav-link" href="#quick-start">Quick start</a>
15+
</li>
16+
{/* <li class="nav-item">
17+
<a class="nav-link" href="#documentation">Documentation</a>
18+
</li> */}
19+
<li class="nav-item">
20+
<a class="nav-link" href="#pricing">Pricing</a>
21+
</li>
22+
</ul>
23+
<ul class="navbar-nav ms-auto">
24+
<li class="nav-item">
25+
<a class="nav-link" href="https://github.com/cloudy-cms/Cloudy.CMS" title="Github"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><path fill="rgba(255, 255, 255, 0.55)" d="M12 0a12 12 0 0 0-3.8 23.4c.6.1.8-.3.8-.6v-2.2c-3.3.7-4-1.4-4-1.4-.6-1.4-1.4-1.8-1.4-1.8-1-.7.1-.7.1-.7 1.2 0 1.9 1.2 1.9 1.2 1 1.8 2.8 1.3 3.4 1 .2-.8.5-1.3.8-1.6-2.7-.3-5.5-1.3-5.5-6 0-1.2.5-2.3 1.3-3.1-.1-.4-.6-1.6.1-3.2 0 0 1-.3 3.3 1.2a11.5 11.5 0 0 1 6 0C17.3 4.7 18.3 5 18.3 5c.7 1.6.2 2.9.1 3.2.8.8 1.3 1.9 1.3 3.2 0 4.6-2.9 5.6-5.5 5.9.4.4.8 1.1.8 2.2v3.3c0 .3.2.7.8.6A12 12 0 0 0 12 0z" /></svg></a>
26+
</li>
27+
<li class="nav-item">
28+
<a class="nav-link" href="https://twitter.com/cloudydotnet" title="Twitter"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><path fill="rgba(255, 255, 255, 0.55)" d="M24 5h-3l2-2-3 1a5 5 0 0 0-8 4C8 8 4 6 2 3c-2 2-1 5 1 7L1 9c0 2 2 5 4 5H3c0 2 2 3 4 3-2 2-4 3-7 3l8 2c9 0 14-8 14-15l2-2z" /></svg></a>
29+
</li>
30+
<li class="nav-item">
31+
<a class="nav-link" href="https://www.youtube.com/channel/UC8BRpzvX5J9n8-2G1KIf5xg" title="Youtube"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><path fill="rgba(255, 255, 255, 0.55)" d="M20 3H4c-4 0-4 3-4 9s0 9 4 9h16c4 0 4-3 4-9s0-9-4-9zM9 16V8l8 4-8 4z" /></svg></a>
32+
</li>
33+
</ul>
34+
</div>
35+
</div>
36+
</nav>
37+
</>;
38+
}

src/header.jsx

-37
This file was deleted.

0 commit comments

Comments
 (0)