diff --git a/Client/reasn-client/apps/web/app/page.tsx b/Client/reasn-client/apps/web/app/page.tsx index 92b3d946..9b54f761 100644 --- a/Client/reasn-client/apps/web/app/page.tsx +++ b/Client/reasn-client/apps/web/app/page.tsx @@ -1,13 +1,12 @@ import React from 'react'; -import styles from "../styles/index.module.css"; -import Nav from "../components/navbar"; -import Footer from '../components/footer'; +import { Navbar } from "../components/Navbar"; +import { Footer } from '../components/Footer'; export default function Web() { return ( <> - - + + > ) } \ No newline at end of file diff --git a/Client/reasn-client/apps/web/components/footer.tsx b/Client/reasn-client/apps/web/components/footer.tsx index e5c51f37..2fed07f3 100644 --- a/Client/reasn-client/apps/web/components/footer.tsx +++ b/Client/reasn-client/apps/web/components/footer.tsx @@ -1,28 +1,26 @@ import React from "react"; -const Footer = () => { -return( - -) -} -export default Footer \ No newline at end of file +export const Footer = () => { + return ( + + ) +} \ No newline at end of file diff --git a/Client/reasn-client/apps/web/components/navbar.tsx b/Client/reasn-client/apps/web/components/navbar.tsx index b4b2b5bb..74dd604d 100644 --- a/Client/reasn-client/apps/web/components/navbar.tsx +++ b/Client/reasn-client/apps/web/components/navbar.tsx @@ -1,24 +1,21 @@ import React from "react"; -const Nav = () => { -return( - +export const Navbar = () => { + return ( - + - Reasn. + Reasn. - logowanie - + logowanie + rejestracja - -) -} -export default Nav \ No newline at end of file + ) +} \ No newline at end of file