From 326e86030d0bb5ad5d9328f50062e690bcfea741 Mon Sep 17 00:00:00 2001 From: VasiliyVD Date: Fri, 27 Mar 2026 12:27:39 +0900 Subject: [PATCH] =?UTF-8?q?=D0=97=D0=B0=D0=B3=D1=80=D1=83=D0=B7=D0=B8?= =?UTF-8?q?=D1=82=D1=8C=20=D1=84=D0=B0=D0=B9=D0=BB=D1=8B=20=D0=B2=20=C2=AB?= =?UTF-8?q?src/components=C2=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/AppLogo.jsx | 12 ++++++++++++ src/components/Layout.jsx | 24 ++++++++++++++++++++++++ src/components/Padding.jsx | 12 ++++++++++++ src/components/Title.jsx | 11 +++++++++++ src/components/index.jsx | 7 +++++++ 5 files changed, 66 insertions(+) create mode 100644 src/components/AppLogo.jsx create mode 100644 src/components/Layout.jsx create mode 100644 src/components/Padding.jsx create mode 100644 src/components/Title.jsx create mode 100644 src/components/index.jsx 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}
+
+ + +