File size: 415 Bytes
ac0baac
d209694
ac0baac
d209694
 
 
 
 
fbb3298
ac0baac
fbb3298
 
 
d209694
 
 
 
a6dbd37
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import React from 'react';

function Home({ setActiveTab }) {
  return (
    <main id="page-a" className="page">
      <h1>FocusGuard</h1>
      <p>Your productivity monitor assistant.</p>

      <div className="home-button-grid">
        <button type="button" className="btn-main" onClick={() => setActiveTab('focus')}>
          Start Focus
        </button>
      </div>
    </main>
  );
}

export default Home;