package indexView import ( "github.com/fossyy/filekeeper/types" "github.com/fossyy/filekeeper/view/client/layout" ) templ content(title string, user types.User) { @layout.Base(title){
@layout.Navbar(user)

Your files, always within reach

Store, access, and manage your files with ease. Filekeeper offers generous storage and seamless access from any device, completely free.

if user.Authenticated { Open Dashboard } else { Sign up for free }

Easy Access

Access your files with just a few clicks, anytime you need them.

Generous Storage

Store all your important files with our spacious free storage.

Access Anywhere

Use Filekeeper on any device - computer, tablet, or smartphone.

Secure Storage

Rest easy knowing your files are stored securely in the cloud.

Why choose Filekeeper?

  • Completely free to use
  • Intuitive and user-friendly interface
  • Generous storage space for all your files
  • Access your files from any device, anywhere
  • Robust file organization and search capabilities
  • Dedicated customer support team

Get Started with Filekeeper

Join Filekeeper today and experience hassle-free file management - no credit card required!

if user.Authenticated { Open Dashboard } else { Create your free account }
@layout.Footer()
} } templ Main(title string, user types.User) { @content(title, user) }