package indexView import ( "github.com/fossyy/filekeeper/types" "github.com/fossyy/filekeeper/view/layout" ) templ content(title string, user types.User) { @layout.Base(title){
if user.Authenticated {
} else { Sign up Sign in }

Your files, always within reach.

Store, access, and share your files from anywhere. We offer secure and reliable file storage, so you can focus on what matters most.

if user.Authenticated { Open Dashboard } else { Get started }

Unlimited Storage

Store as many files as you need with our generous storage limits.

Secure Encryption

Your files are encrypted with the latest security protocols to keep them safe.

Easy Sharing

Quickly share files with friends, family, or colleagues with shareable links.

} } templ Main(title string, user types.User) { @content(title, user) }