diff --git a/src/components/AppLogo.jsx b/src/components/AppLogo.jsx new file mode 100644 index 0000000..ebbdc02 --- /dev/null +++ b/src/components/AppLogo.jsx @@ -0,0 +1,12 @@ +// import Logo from "../assets/logo.svg" +import Logo from "../assets/logo-commit.png" + +export const AppLogo = () => { + return ( +
+ + + +
+ ) +} \ No newline at end of file diff --git a/src/components/Layout.jsx b/src/components/Layout.jsx new file mode 100644 index 0000000..d9a5f28 --- /dev/null +++ b/src/components/Layout.jsx @@ -0,0 +1,24 @@ +import './../css/Layout.css' +import { + Header, + Footer, + Padding +} from '.' + + +const Layout = ({ children, ...props }) => { + return ( + <> + +
+
+
{children}
+
+ + +