Fix assets permissions, fix title
This commit is contained in:
parent
18224d3410
commit
a743f047ae
0
assets/img/NationTech-logo.png
Executable file → Normal file
0
assets/img/NationTech-logo.png
Executable file → Normal file
|
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
0
assets/img/bg-page1.png
Executable file → Normal file
0
assets/img/bg-page1.png
Executable file → Normal file
|
Before Width: | Height: | Size: 274 KiB After Width: | Height: | Size: 274 KiB |
7
assets/img/nt_logo_bold.png
Normal file
7
assets/img/nt_logo_bold.png
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
<html>
|
||||||
|
<head><title>301 Moved Permanently</title></head>
|
||||||
|
<body>
|
||||||
|
<center><h1>301 Moved Permanently</h1></center>
|
||||||
|
<hr><center>nginx/1.18.0 (Ubuntu)</center>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@ -1,4 +1,5 @@
|
|||||||
use leptos::*;
|
use leptos::*;
|
||||||
|
use leptos_meta::*;
|
||||||
|
|
||||||
/// Renders the home page of your application.
|
/// Renders the home page of your application.
|
||||||
#[component]
|
#[component]
|
||||||
@ -8,6 +9,7 @@ pub fn HomePage(cx: Scope) -> impl IntoView {
|
|||||||
let on_click = move |_| set_count.update(|count| *count += 1);
|
let on_click = move |_| set_count.update(|count| *count += 1);
|
||||||
|
|
||||||
view! { cx,
|
view! { cx,
|
||||||
|
<Title text="NationTech"/>
|
||||||
<h1 class="text-9xl">"Welcome to Nationtech.io! Through proper import paths"</h1>
|
<h1 class="text-9xl">"Welcome to Nationtech.io! Through proper import paths"</h1>
|
||||||
<button on:click=on_click>"Click Me: " {count}</button>
|
<button on:click=on_click>"Click Me: " {count}</button>
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user