-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Akash Singh
committed
Feb 5, 2024
1 parent
90083c8
commit 86396a6
Showing
11 changed files
with
75 additions
and
259 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,231 +3,4 @@ import { LandingFooter } from "./landing-footer"; | |
|
||
export const BlogFooter = () => { | ||
return <LandingFooter />; | ||
}; | ||
|
||
// import { useColorMode } from "@docusaurus/theme-common"; | ||
// import clsx from "clsx"; | ||
// import React from "react"; | ||
// import { openFigma } from "../utils/open-figma"; | ||
// import { footerDescription, menuItems, socialLinks } from "./footer-data"; | ||
// import { HeartOutlinedIcon } from "./icons/heart-outlined"; | ||
// import { PrepVerseLogoIcon } from "./icons/prepverse-logo"; | ||
|
||
// export const BlogFooter = () => { | ||
// const { colorMode } = useColorMode(); | ||
|
||
// return ( | ||
// <> | ||
// <div | ||
// className={clsx( | ||
// "border-t border-t-solid", | ||
// "border-t-gray-00 dark:border-t-gray-700", | ||
// "dark:bg-footer-dark-bg", | ||
// "w-full", | ||
// "py-6", | ||
// "landing-sm:py-8", | ||
// "landing-md:py-11", | ||
// "px-4", | ||
// "landing-sm:px-8", | ||
// "landing-md:px-8", | ||
// "landing-lg:px-12", | ||
// "landing-xl:px-20", | ||
// )} | ||
// > | ||
// <div | ||
// className={clsx( | ||
// "max-w-screen-landing-footer", | ||
// "w-full", | ||
// "flex flex-col", | ||
// "gap-6", | ||
// "landing-sm:gap-4", | ||
// "landing-md:gap-9", | ||
// "mx-auto", | ||
// )} | ||
// > | ||
// <div className={clsx("flex items-center justify-between")}> | ||
// <PrepVerseLogoIcon | ||
// className="dark:text-gray-0 text-gray-900" | ||
// onContextMenu={openFigma} | ||
// /> | ||
// </div> | ||
// <div | ||
// className={clsx( | ||
// "flex", | ||
// "flex-col", | ||
// "landing-xl:flex-row", | ||
// "items-start", | ||
// "justify-between", | ||
// "landing-lg:gap-8", | ||
// )} | ||
// > | ||
// <div | ||
// className={clsx( | ||
// "text-xs", | ||
// "opacity-75", | ||
// "landing-lg:opacity-100", | ||
// "landing-lg:text-base", | ||
// "text-gray-500 dark:text-gray-500", | ||
// "font-semibold", | ||
// "landing-md:max-w-[304px] w-full", | ||
// "w-full", | ||
// "flex-shrink-0", | ||
// "mb-6", | ||
// "landing-xl:mb-0", | ||
// )} | ||
// > | ||
// {footerDescription} | ||
// </div> | ||
// <div | ||
// className={clsx( | ||
// "w-full", | ||
// "landing-lg:w-auto", | ||
// "landing-md:grid-cols-3 landing-lg:grid-cols-5 grid grid-cols-2", | ||
// "landing-md:gap-4 gap-10", | ||
// )} | ||
// > | ||
// {menuItems.map((menu) => ( | ||
// <div | ||
// className={clsx( | ||
// "flex min-w-[144px] max-w-[304px] flex-col gap-4", | ||
// )} | ||
// key={menu.label} | ||
// > | ||
// <div className="dark:text-gray-0 text-base font-semibold text-gray-900"> | ||
// {menu.label} | ||
// </div> | ||
// <div className="flex flex-col gap-2"> | ||
// {menu.items.map((item) => ( | ||
// <a | ||
// href={item.href} | ||
// target="_blank" | ||
// key={item.label} | ||
// className={clsx( | ||
// "text-base", | ||
// "text-gray-700 dark:text-gray-400", | ||
// "opacity-75", | ||
// "no-underline hover:no-underline", | ||
// "hover:text-gray-700 hover:dark:text-gray-400", | ||
// )} | ||
// > | ||
// {item.label} | ||
// </a> | ||
// ))} | ||
// </div> | ||
// </div> | ||
// ))} | ||
// <div | ||
// className={clsx( | ||
// "landing-md:col-span-3 landing-lg:col-span-2 w-full landing-content:max-w-[304px]", | ||
// )} | ||
// > | ||
// <div className={clsx("flex flex-col gap-4")}> | ||
// <div className="dark:text-gray-0 text-base font-semibold text-gray-900"> | ||
// Contact | ||
// </div> | ||
// <div | ||
// className={clsx( | ||
// "text-base", | ||
// "text-gray-700 dark:text-gray-400", | ||
// )} | ||
// > | ||
// <a | ||
// href="https://mail.google.com/mail/u/0/?fs=1&[email protected]&tf=cm" | ||
// target="_blank" | ||
// className={clsx( | ||
// "text-gray-700 dark:text-gray-400", | ||
// "no-underline hover:no-underline", | ||
// "hover:text-gray-700 hover:dark:text-gray-400", | ||
// )} | ||
// > | ||
// [email protected] | ||
// </a> | ||
// </div> | ||
// </div> | ||
// </div> | ||
// </div> | ||
// </div> | ||
// </div> | ||
// </div> | ||
// <div | ||
// className={clsx( | ||
// "border-t", | ||
// "border-t-gray-100 dark:border-t-gray-700", | ||
// "bg-gray-50 dark:bg-gray-800", | ||
// "w-full", | ||
// "px-4", | ||
// "landing-sm:px-8", | ||
// "landing-md:px-8", | ||
// "landing-lg:px-12", | ||
// "landing-xl:px-20", | ||
// "py-6", | ||
// )} | ||
// > | ||
// <div | ||
// className={clsx( | ||
// "mx-auto", | ||
// "max-w-screen-landing-footer", | ||
// "w-full", | ||
// "landing-lg:gap-2 gap-6", | ||
// "flex items-center justify-between", | ||
// "landing-lg:flex-row flex-col-reverse", | ||
// )} | ||
// > | ||
// <div | ||
// className={clsx( | ||
// "text-base", | ||
// "text-gray-500 dark:text-gray-400", | ||
// )} | ||
// > | ||
// Copyright © 2023 PrepVerse{" "} | ||
// <HeartOutlinedIcon className="text-refine-red ml-2 inline leading-6" /> <br></br> | ||
// Built with Docusaurus & refine. | ||
// </div> | ||
// <div | ||
// className={clsx( | ||
// "flex items-center", | ||
// "gap-4", | ||
// "landing-lg:flex-row flex-col", | ||
// "landing-lg:max-w-none max-w-[382px]", | ||
// )} | ||
// > | ||
// <span | ||
// className={clsx( | ||
// "text-gray-500 dark:text-gray-400", | ||
// "landing-lg:text-left text-center opacity-75", | ||
// )} | ||
// > | ||
// Connect with me on | ||
// </span> | ||
// <div | ||
// className={clsx( | ||
// "flex", | ||
// "flex-row", | ||
// "items-center", | ||
// "gap-4", | ||
// "justify-between", | ||
// )} | ||
// > | ||
// {socialLinks.map(({ href, icon: Icon }) => ( | ||
// <a | ||
// href={href} | ||
// key={href} | ||
// target="_blank" | ||
// rel="noreferrer" | ||
// className={clsx( | ||
// "text-gray-500 dark:text-gray-400", | ||
// "opacity-75", | ||
// "no-underline", | ||
// "hover:text-gray-500 hover:no-underline hover:dark:text-gray-400", | ||
// )} | ||
// > | ||
// <Icon className="landing-lg:w-6 landing-lg:h-6 h-9 w-9" /> | ||
// </a> | ||
// ))} | ||
// </div> | ||
// </div> | ||
// </div> | ||
// </div> | ||
// </> | ||
// ); | ||
// }; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.