Skip to content

Commit

Permalink
Add PrepVerse files
Browse files Browse the repository at this point in the history
  • Loading branch information
Akash Singh committed Feb 5, 2024
1 parent 90083c8 commit 86396a6
Show file tree
Hide file tree
Showing 11 changed files with 75 additions and 259 deletions.
8 changes: 4 additions & 4 deletions documentation/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -159,10 +159,10 @@ const siteConfig = {
},
image: "img/prepverse_favicon.jpg",
algolia: {
appId: "1",
apiKey: "2",
indexName: "prepverse",
contextualSearch: true,
appId: "WFEX2734BK",
apiKey: "ca4e3acfce16651e728fe959f2502f28",
indexName: "prepverseio",
// contextualSearch: true,
},
metadata: [
{
Expand Down
33 changes: 33 additions & 0 deletions documentation/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions documentation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"@docusaurus/preset-classic": "2.4.0",
"@giscus/react": "^2.4.0",
"@headlessui/react": "^1.7.15",
"@iconify/react": "^4.1.1",
"@mdx-js/react": "^1.6.22",
"@swc/core": "^1.3.64",
"@tailwindcss/line-clamp": "^0.4.2",
Expand Down
2 changes: 1 addition & 1 deletion documentation/src/components/project-list/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ const ExampleList: React.FC = () => {
<>
<div
className={clsx(
"grid grid-cols-1 md:grid-cols-3",
"grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3",
"gap-4 2xl:gap-8",
)}
>
Expand Down
229 changes: 1 addition & 228 deletions documentation/src/prepverse-theme/blog-footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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>
// </>
// );
// };
};
2 changes: 1 addition & 1 deletion documentation/src/prepverse-theme/common-footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const CommonFooter = () => {
"sm:mr-4",
)}
>
Join us on
Connect with me on
</div>
<div
className={clsx(
Expand Down
14 changes: 6 additions & 8 deletions documentation/src/prepverse-theme/enterprise-hero-section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ export const EnterpriseHeroSection = ({
"text-start",
"pl-4 landing-sm:pl-6 landing-md:pl-10",
"dark:text-gray-0 text-gray-900",
"landing-lg:pt-8",
)}
>
I am{" "}
Expand All @@ -39,7 +38,6 @@ export const EnterpriseHeroSection = ({
>
Akash Singh
</span>
.
</h1>
<p
className={clsx(
Expand All @@ -55,11 +53,13 @@ export const EnterpriseHeroSection = ({
<br></br>
<br></br>
"Face the challenge, Fight through the obstacles, Finish what you started."
<br></br>
<br></br>
</p>
<EnterpriseGetInTouchButton
className={clsx(
"pl-4 landing-sm:pl-6 landing-md:pl-10",
"mt-6 landing-lg:mt-16",
"mt-6 landing-lg:mt-2",
)}
/>
</div>
Expand All @@ -74,13 +74,11 @@ export const EnterpriseHeroSection = ({
>
<CommonThemedImage
className={clsx(
"landing-md:h-[400px] landing-md:w-[400px]",
"landing-md:h-[420px] landing-md:w-[420px]",
"rounded-full",
)}
// srcDark="https://refine.ams3.cdn.digitaloceanspaces.com/enterprise/enterprise-hero-image-dark.png"
srcDark="https://avatars.githubusercontent.com/u/60146338"
// srcLight="https://refine.ams3.cdn.digitaloceanspaces.com/enterprise/enterprise-hero-image-light.png"
srcLight="https://avatars.githubusercontent.com/u/60146338"
srcDark="https://github.com/AkashSingh3031.png"
srcLight="https://github.com/AkashSingh3031.png"
alt="Akash Singh"
/>
</div>
Expand Down
8 changes: 4 additions & 4 deletions documentation/src/prepverse-theme/footer-data.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,12 @@ export const socialLinks = [
icon: FooterGithubIcon,
href: "https://github.com/AkashSingh3031",
},
{
icon: FooterTwitterIcon,
href: "https://twitter.com/akashsingh3031",
},
{
icon: FooterLinkedinIcon,
href: "https://www.linkedin.com/in/akashsingh3031",
},
{
icon: FooterTwitterIcon,
href: "https://twitter.com/akashsingh3031",
},
];
Loading

0 comments on commit 86396a6

Please sign in to comment.