Improving pages title
This commit is contained in:
@ -38,7 +38,7 @@ templ InternalServerError(title string){
|
||||
@layout.Base(title){
|
||||
<main class="container mx-auto px-4 md:px-6">
|
||||
<div class="flex h-screen w-full flex-col items-center justify-center bg-white">
|
||||
<image class="w-32 md:w-64 lg:w-128" src="/public/InternalServerErrorIcon.svg" alt="brand image" />
|
||||
<image class="w-32 md:w-64 lg:w-128" src="/public/InternalServerErrorIcon.svg" alt="Cute Icon" />
|
||||
<div class="mx-auto max-w-md space-y-4 text-center">
|
||||
<h1 class="text-4xl font-bold tracking-tight text-gray-900">Oops! Something went wrong.</h1>
|
||||
<p class="text-gray-500">
|
||||
|
@ -10,7 +10,7 @@ templ content(title string, user types.User) {
|
||||
<div class="bg-white">
|
||||
@layout.Navbar(user)
|
||||
<main class="container mx-auto px-6 py-16 text-center">
|
||||
<h1 class="text-5xl font-bold text-gray-900 mb-2">Your files, always within reach.</h1>
|
||||
<h1 class="text-5xl font-bold text-gray-900 mb-2">Your files, always within reach</h1>
|
||||
<p class="text-gray-700 text-lg mb-8">
|
||||
Store, access, and share your files from anywhere. We offer secure and reliable file storage, so you can
|
||||
focus on what matters most.
|
||||
|
@ -8,7 +8,7 @@ templ Base(title string){
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="description" content="Store, share, and access your files securely with our file hosting service. Upload, organize, and share documents, images, videos, and more with ease. Sign up now for secure and reliable file hosting." />
|
||||
<meta name="description" content="Secure and reliable file hosting service. Upload, organize, and share your documents, images, videos, and more. Sign up now to keep your files always within reach." />
|
||||
<meta name="keywords" content="file hosting, file sharing, cloud storage, data storage, secure file hosting, filekeeper, drive, mega" />
|
||||
<meta name="author" content="Filekeeper" />
|
||||
<link href="/public/output.css" rel="stylesheet"/>
|
||||
@ -24,7 +24,7 @@ templ Navbar(user types.User) {
|
||||
<header class="flex items-center justify-between border-b border-gray-200 bg-white px-6 py-4">
|
||||
<div class="flex items-center gap-4">
|
||||
<a class="flex items-center gap-2" href="#">
|
||||
<image src="public/brand.svg" width="48" height="48" alt="brand image" />
|
||||
<img src="/public/brand.svg" width="48" height="48" alt="Filekeeper Logo" />
|
||||
<span class="text-lg font-semibold">Filekeeper</span>
|
||||
</a>
|
||||
</div>
|
||||
@ -85,7 +85,7 @@ templ Footer() {
|
||||
<footer class="bg-white p-6 md:p-8 w-full relative bottom-0 border-t border-gray-200 w-full py-8">
|
||||
<div class="container mx-auto flex flex-col items-center justify-between gap-6 md:flex-row">
|
||||
<div class="flex items-center gap-2">
|
||||
<image src="public/brand.svg" width="48" height="48" alt="brand image" />
|
||||
<img src="/public/brand.svg" width="48" height="48" alt="Filekeeper Logo" />
|
||||
<span class="text-lg font-semibold">Filekeeper</span>
|
||||
</div>
|
||||
<nav class="flex flex-wrap items-center justify-center gap-4 text-sm font-medium">
|
||||
|
Reference in New Issue
Block a user