Skip to content

Commit

Permalink
change home page
Browse files Browse the repository at this point in the history
  • Loading branch information
Irina-anat committed Nov 6, 2023
1 parent 0e75da6 commit f9c3f1a
Show file tree
Hide file tree
Showing 6 changed files with 119 additions and 343 deletions.
112 changes: 0 additions & 112 deletions README.RO.md

This file was deleted.

105 changes: 0 additions & 105 deletions README.es.md

This file was deleted.

117 changes: 0 additions & 117 deletions README.pl.md

This file was deleted.

2 changes: 1 addition & 1 deletion src/components/Layuot.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Suspense } from 'react';

export const Layout = () => {
return (
<div style={{ maxWidth: 960, margin: '0 auto', padding: '0 16px' }}>
<div style={{ margin: '0 auto', padding: '0 16px' }}>
<AppBar />
<Suspense fallback={null}>
<Outlet />
Expand Down
32 changes: 28 additions & 4 deletions src/pages/Home.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,38 @@
import { Circle } from "components/Circle/Circle";
import css from './Home.module.css'


export default function Home() {
/*export default function Home() {
return (
<div className={css.container}>
<h1 className={css.title}>
Welcome phonebook
Welcome to phonebook
</h1>
<p className={css.homeText}>
In this app, you can store your phone contacts in a format that suits you best. You also have the option to edit, delete, and filter. Enjoy using it.
</p>
</div>
);
}*/


export default function Home() {
return (<>

<div>
<div className={css.wave}></div>
<div className={css.wave}></div>
<div className={css.wave}></div>
</div>
<div className={css.container}>
<h1 className={css.title}>
Welcome to phonebook
</h1>
<Circle/>
<p className={css.homeText}>
In this app, you can store your phone contacts in a format that suits you best. You also have the option to edit, delete, and filter. Enjoy using it.
</p>
</div>

</>

);
}
Loading

0 comments on commit f9c3f1a

Please sign in to comment.