-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* structure, router * home --------- Co-authored-by: Dmitri Gornakov <[email protected]>
- Loading branch information
1 parent
74f4742
commit abbf93f
Showing
7 changed files
with
114 additions
and
2 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import React from 'react'; | ||
|
||
function Home() { | ||
return ( | ||
<div> | ||
<section className="hero"> | ||
<h1>Добро пожаловать в онлайн-школу!</h1> | ||
<p>Изучай новые навыки с лучшими преподавателями.</p> | ||
</section> | ||
<section className="courses"> | ||
<h2>Популярные курсы</h2> | ||
{/* Здесь будет список популярных курсов */} | ||
</section> | ||
<section className="testimonials"> | ||
<h2>Отзывы студентов</h2> | ||
{/* Здесь будут отзывы */} | ||
</section> | ||
</div> | ||
); | ||
} | ||
|
||
export default Home; |