From 04466bc22826e38e1d30ba11e421472b14590600 Mon Sep 17 00:00:00 2001 From: bilel0509 Date: Tue, 8 Oct 2024 16:37:26 +0100 Subject: [PATCH 1/7] fixed overflow problem in the hero section and changed main display into flex --- .idea/.gitignore | 5 + .idea/codeStyles/Project.xml | 61 + .idea/codeStyles/codeStyleConfig.xml | 5 + .idea/heroic-website.iml | 12 + .idea/modules.xml | 8 + .idea/vcs.xml | 6 + components/Layout.tsx | 4 +- package-lock.json | 22112 +++++++++++++++++++++++++ package.json | 1 + pages/index.tsx | 12 +- styles/Home.module.css | 2 + styles/globals.css | 8 + styles/heroic.css | 10 +- styles/media.css | 12 +- yarn.lock | 11664 +++++++------ 15 files changed, 28925 insertions(+), 4997 deletions(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/codeStyles/Project.xml create mode 100644 .idea/codeStyles/codeStyleConfig.xml create mode 100644 .idea/heroic-website.iml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 package-lock.json diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..b58b603 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,5 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml new file mode 100644 index 0000000..14ad7b1 --- /dev/null +++ b/.idea/codeStyles/Project.xml @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml new file mode 100644 index 0000000..79ee123 --- /dev/null +++ b/.idea/codeStyles/codeStyleConfig.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/.idea/heroic-website.iml b/.idea/heroic-website.iml new file mode 100644 index 0000000..24643cc --- /dev/null +++ b/.idea/heroic-website.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..0418cf6 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/components/Layout.tsx b/components/Layout.tsx index b352d11..54cb9b8 100644 --- a/components/Layout.tsx +++ b/components/Layout.tsx @@ -10,7 +10,9 @@ export const Layout = ({ children }: Props) => { return ( <> -
{children}
+
+ {children} +