Skip to content

Commit

Permalink
Merge branch 'Puskar-Roy:dev' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
sezallagwal authored Oct 12, 2024
2 parents cb6f0de + ba5e08d commit 1bdb8b7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion apps/web/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const alata = Montserrat({
});
function Footer() {
return (
<div className="w-full bg-slate-900 dark:bg-grid-white/[0.2] bg-grid-black/[0.2] relative flex items-center justify-center pb-10">
<div className="w-full bg-slate-900 h-[50vh] dark:bg-grid-white/[0.2] bg-grid-black/[0.2] relative flex items-center justify-center pb-10">
<div className="absolute pointer-events-none inset-0 flex items-center justify-center bg-black [mask-image:radial-gradient(ellipse_at_center,transparent_20%,black)]"></div>
<footer className="bg-transparent rounded-lg m-4 mx-auto w-[80%] z-10 flex items-center justify-center">
<div className="w-full max-w-screen-xl mx-auhref p-4 md:py-8">
Expand Down
6 changes: 3 additions & 3 deletions apps/web/components/Words.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,23 +43,23 @@ export function FlipWordsDemo() {
<div className="flex justify-center text-start md:flex-row gap-5 flex-row sm:flex-row">

<Link href="/docs">
<button className="flex gap-3 cursor-pointer text-white font-semibold bg-gradient-to-r from-gray-800 to-black px-7 py-[0.85rem] rounded-full border border-gray-600 hover:scale-105 duration-200 hover:border-white hover:from-red-700 hover:to-red-600 z-10">
<button className="flex gap-3 cursor-pointer text-white font-semibold bg-gradient-to-r from-gray-800 to-black px-7 py-[0.85rem] rounded-full border border-gray-600 hover:scale-105 duration-200 hover:border-gray-800 hover:from-red-700 hover:to-red-600 z-10">
<FaArrowCircleRight className="text-2xl" />
</button>
</Link>



<Link href="https://www.npmjs.com/package/create-my-api">
<button className="flex gap-3 cursor-pointer text-white font-semibold bg-gradient-to-r from-gray-800 to-black px-4 rounded-full border border-gray-600 hover:scale-105 duration-200 hover:text-white hover:border-white hover:from-red-700 hover:to-red-600 z-10">
<button className="flex gap-3 cursor-pointer text-white font-semibold bg-gradient-to-r from-gray-800 to-black px-4 rounded-full border border-gray-600 hover:scale-105 duration-200 hover:text-white hover:border-gray-800 hover:from-red-700 hover:to-red-600 z-10">
<FaNpm className="text-5xl" />
</button>
</Link>



<Link href="https://github.com/Puskar-Roy">
<button className="flex gap-3 cursor-pointer text-white font-semibold bg-gradient-to-r from-gray-800 to-black px-7 py-[0.85rem] rounded-full border border-gray-600 hover:scale-105 duration-200 hover:text-gray-500 hover:border-gray-800 hover:from-black hover:to-gray-900 z-10">
<button className="flex gap-3 cursor-pointer text-white font-semibold bg-gradient-to-r from-gray-800 to-black px-7 py-[0.85rem] rounded-full border border-gray-600 hover:scale-105 duration-200 hover:text-gray-500 hover:border-gray-800 hover:from-red-700 hover:to-red-600 z-10">
<Github />
</button>
</Link>
Expand Down
2 changes: 1 addition & 1 deletion apps/web/components/ui/infinite-effect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const GoogleGeminiEffect = ({
className?: string;
}) => {
return (
<div className={cn("sticky top-80 z-10", className)}>
<div className={cn("sticky top-48 z-10", className)}>
<p className="text-4xl font-extrabold md:text-7xl sm:font-normal pb-4 text-center bg-clip-text text-transparent bg-gradient-to-b from-neutral-100 to-neutral-300">
{title || `Build with Create My API`}
</p>
Expand Down

0 comments on commit 1bdb8b7

Please sign in to comment.