diff --git a/legalease_app/components/Footer.js b/legalease_app/components/Footer.js new file mode 100644 index 0000000..d26d78b --- /dev/null +++ b/legalease_app/components/Footer.js @@ -0,0 +1,27 @@ +import React from 'react' + +const Footer = () => { + return ( +
+
+ +
+
+
+

+ @{new Date().getFullYear()} CodeInn. Allright reserved. +

+
+
+

Terms &Conditions

+

Privacy

+

Security

+

Declarations

+
+
+
+
+ ) +} + +export default Footer \ No newline at end of file diff --git a/legalease_app/pages/home/index.js b/legalease_app/pages/home/index.js index 4d07b6c..2fec34e 100644 --- a/legalease_app/pages/home/index.js +++ b/legalease_app/pages/home/index.js @@ -1,3 +1,4 @@ +import Footer from '@/components/Footer' import InputDoc from '@/components/InputDoc' import Navbar from '@/components/Navbar' import React from 'react' @@ -7,6 +8,7 @@ const HomePage = () => {
+
) } diff --git a/legalease_app/styles/globals.css b/legalease_app/styles/globals.css index 3050261..a15bc66 100644 --- a/legalease_app/styles/globals.css +++ b/legalease_app/styles/globals.css @@ -87,4 +87,57 @@ button:hover { } .textarea{ margin-bottom: 10px; -} \ No newline at end of file +} +.section_padding{ + padding: 4rem 4rem ; + +} +.footer{ + background-color: #2d2d32; + position: fixed; + bottom: 0; + width: 100%; +} +.sb_footer{ + display: flex; + flex-direction: column; +} + +a{ + color: rgb(red, green, blue); + text-decoration:none; +} +h4{ + font-size: 14px; + line-height: 17px; + margin-bottom: 0.9rem; +} + + +.sb_footer-below{ + display: flex; + flex-direction: row; + justify-content: space-between; + margin-top: 0.2rem; +} +.sb_footer-below-links{ + display: flex; + flex-direction: row; +} +.sb_footer-below-links p{ + font-size: 13px; + line-height: 15px; + margin-left: 2rem; + color: white; + font-weight: 600; +} +hr{ + color: white !important; + width: 100%; +} +.sb_footer-copyright p{ + font-size: 13px; + line-height: 15px; + color: rgb(red, green, blue); + font-weight: 600; +}