source: frontend/src/pages/LandingPage/components/Hero.jsx@ 140d098

Last change on this file since 140d098 was 793ce2c, checked in by Andrej <asumanovski@…>, 5 months ago

Landing page design

  • Property mode set to 100644
File size: 932 bytes
RevLine 
[793ce2c]1import React from "react";
2
3const Hero = () => {
4 return (
5 <div
6 className="hero min-h-screen"
7 style={{
8 backgroundImage:
9 "url(https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1920&q=80)",
10 }}
11 >
12 <div className="hero-overlay"></div>
13 <div className="hero-content text-neutral-content text-center">
14 <div className="max-w-md">
15 <h1 className="mb-5 text-5xl font-bold">
16 Trekr — track progress, every day
17 </h1>
18 <p className="mb-5">
19 One self-improvement hub: workouts, weight & nutrition, finances &
20 budgeting, investing, and daily discipline tasks. Set goals, log
21 consistently, and see your progress in one place.
22 </p>
23 <button className="btn btn-primary">Get started</button>
24 </div>
25 </div>
26 </div>
27 );
28};
29
30export default Hero;
Note: See TracBrowser for help on using the repository browser.