mirror of
https://github.com/sheptikhinv/timers.git
synced 2026-02-07 07:41:36 +05:00
initial commit
This commit is contained in:
commit
b120143726
23 changed files with 3710 additions and 0 deletions
30
src/pages/Timers/Timers.tsx
Normal file
30
src/pages/Timers/Timers.tsx
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
import Timer from '../../components/Timer/Timer';
|
||||
import styles from './Timers.module.css';
|
||||
|
||||
const Timers = () => {
|
||||
return (
|
||||
<div className={styles.content}>
|
||||
<header>
|
||||
<a className={`${styles.header_text} ${styles.title}`}>ГринТаймер</a>
|
||||
</header>
|
||||
<div className={styles.timers_container}>
|
||||
<Timer/>
|
||||
<Timer/>
|
||||
<Timer/>
|
||||
<Timer/>
|
||||
</div>
|
||||
<div className={styles.notes_container}>
|
||||
<a className={`${styles.title} ${styles.notes_text}`}>Заметки</a>
|
||||
<textarea></textarea>
|
||||
</div>
|
||||
<footer>
|
||||
<a className={`${styles.title} ${styles.notes_text}`}>Респекты</a>
|
||||
<a>Лиза +вайбик за макет</a>
|
||||
<a>Слава сигма за всё остальное</a>
|
||||
<a>Игорь красава с нами рядом сидел</a>
|
||||
</footer>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
export default Timers;
|
||||
Loading…
Add table
Add a link
Reference in a new issue