Skip to content

Commit

Permalink
updated text and skills
Browse files Browse the repository at this point in the history
  • Loading branch information
prince-63 committed Oct 26, 2024
1 parent 6b67185 commit 4822885
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 16 deletions.
1 change: 1 addition & 0 deletions src/components/data-display/tech-details.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import { TechDetails } from "@/lib/types";
import Typography from "@/components/general/typography";
import spaceGrotesk from "../general/space-grotesk-font";
import Reavel from "@/hooks/Reavel";

const TechDetail = ({ label, progress }: TechDetails) => {
return (
Expand Down
2 changes: 2 additions & 0 deletions src/components/sections/about-me.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"use client";

import Image from "next/image";
import PrinceKumar from "../../../public/images/about_image.jpg";
import Tag from "@/components/data-display/tag";
Expand Down
10 changes: 9 additions & 1 deletion src/components/sections/hero.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"use client";

import Image from "next/image";
import { MapPin } from "lucide-react";
import PrinceProfile from "../../../public/images/profile_image.jpg";
Expand Down Expand Up @@ -34,8 +36,14 @@ const HeroSection = () => {
<div className="flex flex-col gap-2">
<Reavel>
<Typography variant="h1">
Hello, he is Prince{" "}
Hello
<span className="inline-block animate-waving-hand">👋</span>
{","}
</Typography>
</Reavel>
<Reavel>
<Typography variant="h1">
He&apos;s <span className="text-emerald-500">Prince</span>{"."}
</Typography>
</Reavel>
<Reavel>
Expand Down
17 changes: 10 additions & 7 deletions src/components/sections/project.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import ScrollAnimation from "@/hooks/scrollAnimation";
import spaceGrotesk from "../general/space-grotesk-font";
import Typography from "../general/typography";
import ProjectDetails from "../data-display/project-details";
import Reavel from "@/hooks/Reavel";

export default function ProjectSection() {
return (
Expand All @@ -20,13 +21,15 @@ export default function ProjectSection() {
</div>
</ScrollAnimation>

<Typography
variant="subtitle"
className={`${spaceGrotesk.className} max-w-lg text-center`}
>
Here are some projects that showcase Prince&apos;s passion for web and
app development.
</Typography>
<Reavel>
<Typography
variant="subtitle"
className={`${spaceGrotesk.className} max-w-lg text-center`}
>
Here are some projects that showcase Prince&apos;s passion for web
and app development.
</Typography>
</Reavel>
</div>

<div>
Expand Down
19 changes: 12 additions & 7 deletions src/components/sections/skills.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
"use client";

import { TECHNOLOGIES } from "@/lib/data";
import Tag from "@/components/data-display/tag";
import Container from "@/components/layout/container";
import ScrollAnimation from "@/hooks/scrollAnimation";
import spaceGrotesk from "../general/space-grotesk-font";
import TechDetail from "../data-display/tech-details";
import Typography from "../general/typography";
import Reavel from "@/hooks/Reavel";

const SkillsSection = () => {
return (
Expand All @@ -18,13 +21,15 @@ const SkillsSection = () => {
/>
</div>
</ScrollAnimation>
<Typography
variant="subtitle"
className={`${spaceGrotesk.className} sm:max-w-xl text-center`}
>
Here are some key skills that demonstrate Prince&apos;s expertise and
passion for web and app development.
</Typography>
<Reavel>
<Typography
variant="subtitle"
className={`${spaceGrotesk.className} sm:max-w-xl text-center`}
>
Here are some key skills that demonstrate Prince&apos;s expertise
and passion for web and app development.
</Typography>
</Reavel>
</div>

<div className="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 sm:gap-4">
Expand Down
2 changes: 1 addition & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ module.exports = {
animation: {
"drawer-open": "open 0.3s ease-in-out",
"drawer-close": "close 0.3s ease-in-out",
"waving-hand": "waving 2s linear 3",
"waving-hand": "waving 2s infinite",
},
},
},
Expand Down

1 comment on commit 4822885

@vercel
Copy link

@vercel vercel bot commented on 4822885 Oct 26, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.