Added "under construction" for some pages.
This commit is contained in:
parent
16f629df6a
commit
e266164530
6 changed files with 23 additions and 18 deletions
12
frontend/src/lib/components/under_construction.svelte
Normal file
12
frontend/src/lib/components/under_construction.svelte
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
<script>
|
||||||
|
import "$lib/css/base.css";
|
||||||
|
import "$lib/css/cover-img.css";
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div class="flex-row center" style="height:80dvh">
|
||||||
|
<img style="height:50dvh;" src="/under_construction.png" alt="Under Construction" />
|
||||||
|
<div class="flex-col section">
|
||||||
|
<h1>Page under construction !</h1>
|
||||||
|
<p style="width:auto;">please check it later!</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
|
@ -68,6 +68,11 @@
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<svelte:head>
|
||||||
|
<title>Etheryo</title>
|
||||||
|
</svelte:head>
|
||||||
|
|
||||||
|
|
||||||
<div class="main-banner">
|
<div class="main-banner">
|
||||||
<CoverImg
|
<CoverImg
|
||||||
cover={hubjson.cover}
|
cover={hubjson.cover}
|
||||||
|
|
|
@ -1,16 +1,10 @@
|
||||||
<script>
|
<script>
|
||||||
import "$lib/css/base.css";
|
import "$lib/css/base.css";
|
||||||
import "$lib/css/main.css";
|
import "$lib/css/main.css";
|
||||||
|
import UnderConstruction from "$lib/components/under_construction.svelte";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="main-banner">
|
<div class="main-banner">
|
||||||
<div class="main-banner-gradient"></div>
|
<div class="main-banner-gradient"></div>
|
||||||
<div class="main-banner-content">
|
<UnderConstruction/>
|
||||||
<div
|
|
||||||
class="flex-row center"
|
|
||||||
style="padding-top: 15rem;padding-bottom: 15rem;"
|
|
||||||
>
|
|
||||||
<h1>About</h1>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,19 +1,13 @@
|
||||||
<script>
|
<script>
|
||||||
import "$lib/css/base.css";
|
import "$lib/css/base.css";
|
||||||
import "$lib/css/main.css";
|
import "$lib/css/main.css";
|
||||||
|
import UnderConstruction from "$lib/components/under_construction.svelte";
|
||||||
|
|
||||||
export let data;
|
// export let data;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="main-banner">
|
<div class="main-banner">
|
||||||
<div class="main-banner-gradient"></div>
|
<div class="main-banner-gradient"></div>
|
||||||
<div class="main-banner-content">
|
<UnderConstruction />
|
||||||
<div
|
<!-- <p>Project Name: {data.project}</p> -->
|
||||||
class="flex-col center"
|
|
||||||
style="padding-top: 15rem;padding-bottom: 15rem;"
|
|
||||||
>
|
|
||||||
<h1>Project</h1>
|
|
||||||
<h2>{data.project}</h2>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 24 KiB |
BIN
frontend/static/under_construction.png
Normal file
BIN
frontend/static/under_construction.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 88 KiB |
Loading…
Add table
Reference in a new issue