removed animations
This commit is contained in:
parent
8ddf0e9b62
commit
8601b2fc2b
|
@ -8,11 +8,10 @@ import { StyledNotion } from "@/components/notion/styled";
|
||||||
import { ExternalLink } from "lucide-react";
|
import { ExternalLink } from "lucide-react";
|
||||||
import { Footer } from "./Footer";
|
import { Footer } from "./Footer";
|
||||||
import { Connect } from "./Connect";
|
import { Connect } from "./Connect";
|
||||||
import { cn } from "@/lib/utils";
|
|
||||||
|
|
||||||
export default function Page() {
|
export default function Page() {
|
||||||
return (
|
return (
|
||||||
<main className="animate-fade-in">
|
<main>
|
||||||
<div className="container py-12 max-w-xl">
|
<div className="container py-12 max-w-xl">
|
||||||
<GrainProvider
|
<GrainProvider
|
||||||
grain_options={{
|
grain_options={{
|
||||||
|
@ -25,13 +24,13 @@ export default function Page() {
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
<header className="my-2">
|
<header className="my-2">
|
||||||
{/* <GradientProvider> */}
|
<GradientProvider>
|
||||||
<h1 className="text-xl animate-fade-in-from-bottom font-display font-medium">
|
<h1 className="text-xl font-display animate-in font-medium">
|
||||||
./raj
|
./raj
|
||||||
</h1>
|
</h1>
|
||||||
{/* </GradientProvider> */}
|
</GradientProvider>
|
||||||
</header>
|
</header>
|
||||||
<div className="animate-fade-in-from-bottom animation-delay-600">
|
<div className="">
|
||||||
<p className="text-xs italic">I like to build things</p>
|
<p className="text-xs italic">I like to build things</p>
|
||||||
<p className="text-xs">
|
<p className="text-xs">
|
||||||
Software Engineer{" "}
|
Software Engineer{" "}
|
||||||
|
@ -124,7 +123,6 @@ function Projects() {
|
||||||
|
|
||||||
<div className="sm:grid-cols-2 grid-cols-1 grid gap-2">
|
<div className="sm:grid-cols-2 grid-cols-1 grid gap-2">
|
||||||
<Project
|
<Project
|
||||||
className="animate-fade-in-from-bottom animation-delay-[1200]"
|
|
||||||
title="PPEC"
|
title="PPEC"
|
||||||
description={
|
description={
|
||||||
"PhonePe’s internal cloud provisioning service with fine grain control over provisioning and network, I made the entire ux ui flow for this, very cool service"
|
"PhonePe’s internal cloud provisioning service with fine grain control over provisioning and network, I made the entire ux ui flow for this, very cool service"
|
||||||
|
@ -132,7 +130,6 @@ function Projects() {
|
||||||
href="https://tech.phonepe.com/heres-everything-you-need-to-know-about-phonepes-internal-cloud-provisioning-service/"
|
href="https://tech.phonepe.com/heres-everything-you-need-to-know-about-phonepes-internal-cloud-provisioning-service/"
|
||||||
/>
|
/>
|
||||||
<Project
|
<Project
|
||||||
className="animate-fade-in-from-bottom animation-delay-[2400]"
|
|
||||||
title="Chakshu"
|
title="Chakshu"
|
||||||
description={
|
description={
|
||||||
"Server inventory management service that manages procurement to server onboarding."
|
"Server inventory management service that manages procurement to server onboarding."
|
||||||
|
@ -140,7 +137,6 @@ function Projects() {
|
||||||
href="https://tech.phonepe.com/phonepes-server-state-management-via-senzu-and-pious-an-overview/"
|
href="https://tech.phonepe.com/phonepes-server-state-management-via-senzu-and-pious-an-overview/"
|
||||||
/>
|
/>
|
||||||
<Project
|
<Project
|
||||||
className="animate-fade-in-from-bottom animation-delay-[4800]"
|
|
||||||
title="Makima"
|
title="Makima"
|
||||||
href="https://github.com/xrehpicx/makima"
|
href="https://github.com/xrehpicx/makima"
|
||||||
description={`Manage servers using natural language.
|
description={`Manage servers using natural language.
|
||||||
|
@ -148,7 +144,6 @@ Keep track of stats of various things by memory.
|
||||||
Schedule absolutely anything across all kind of tasks by making the ai talk to itself in the future.`}
|
Schedule absolutely anything across all kind of tasks by making the ai talk to itself in the future.`}
|
||||||
/>
|
/>
|
||||||
<Project
|
<Project
|
||||||
className="animate-fade-in-from-bottom animation-delay-[9600]"
|
|
||||||
title="PEE (Project Environment Executor)"
|
title="PEE (Project Environment Executor)"
|
||||||
description={
|
description={
|
||||||
"A tmux session manager with a tui and config control to setup tmux sessions."
|
"A tmux session manager with a tui and config control to setup tmux sessions."
|
||||||
|
@ -164,15 +159,13 @@ function Project({
|
||||||
title,
|
title,
|
||||||
description,
|
description,
|
||||||
href,
|
href,
|
||||||
className,
|
|
||||||
}: {
|
}: {
|
||||||
title: string;
|
title: string;
|
||||||
description: JSX.Element | string;
|
description: JSX.Element | string;
|
||||||
href?: string;
|
href?: string;
|
||||||
className?: string;
|
|
||||||
}) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<div className={cn("mt-4", className)}>
|
<div className="mt-4">
|
||||||
<div className="flex items-center gap-1">
|
<div className="flex items-center gap-1">
|
||||||
<h4 className="font-display font-medium text-sm">{title}</h4>
|
<h4 className="font-display font-medium text-sm">{title}</h4>
|
||||||
{href ? (
|
{href ? (
|
||||||
|
|
Loading…
Reference in New Issue