Skip to content

Commit

Permalink
Add Powered by SimpleLogin
Browse files Browse the repository at this point in the history
Merge pull request #22 from ayushk1804/main
  • Loading branch information
ayushk1804 authored Jul 6, 2021
2 parents 849350f + c07ce50 commit 17f3a58
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ import { Sidebar } from "../src/Components/Sidebar/Sidebar";
import { FAQSection } from "../src/Components/IndexPageComponents/FAQSection/FAQSection";
import { HostSection } from "../src/Components/IndexPageComponents/HostSection/HostSection";
import { CTAButton } from "../src/Components/IndexPageComponents/CTAButton/CTAButton";
import Footer from "../src/Components/Footer/Footer";
import { PoweredBySection } from "../src/Components/IndexPageComponents/PoweredBySection/PoweredBySection";
// import Footer from "../src/Components/Footer/Footer";

export default function Home() {
const [isSidebarOpen, setSidebarOpen] = useState(false);
Expand Down Expand Up @@ -103,6 +104,7 @@ export default function Home() {
<FAQSection />
<HostSection />
<CTAButton />
<PoweredBySection />
{/* <Footer /> */}
</div>
</div>
Expand Down
1 change: 1 addition & 0 deletions public/Assets/Images/PoweredBy/SimpleLogin.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import Image from "next/image";
const PoweredBySection = () => {
return (
<div className="w-full flex place-items-center bg-theme-card p-5">
<div className="m-auto flex place-items-center gap-2 md:gap-5">
<h3 className="text-theme-primary-600 text-lg md:text-2xl">Powered By</h3>
<div className="flex place-items-center">
<Image
className="object-fit"
src="/Assets/Images/PoweredBy/SimpleLogin.svg"
alt="SimpleLogin"
width={180}
height={30}
/>
</div>
</div>
</div>
);
};

export { PoweredBySection };

0 comments on commit 17f3a58

Please sign in to comment.