Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shahdivyank committed Oct 30, 2024
1 parent d571710 commit f06da05
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/components/user/profile/header.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Mail } from "lucide-react";
import Image from "next/image";
import Image, { StaticImageData } from "next/image";
import { FaDiscord, FaGithub } from "react-icons/fa";
import Projects from "./projects";
import Link from "next/link";
Expand All @@ -10,7 +10,7 @@ interface HeaderProps {
github: string;
discord: string;
status: string;
profile: string;
profile: StaticImageData;
projects: string[];
}

Expand Down Expand Up @@ -67,7 +67,7 @@ const Header = ({
<p className="rounded-md bg-starlight-blue px-7 py-1.5 text-sm font-bold text-white">
{status}
</p>
<div className="mx-4 h-8 border-l-2 border-starlight-lightgray" />
<div className="border-starlight-lightgray mx-4 h-8 border-l-2" />
<Projects projects={projects} />
</div>
</div>
Expand Down
3 changes: 2 additions & 1 deletion src/components/user/profile/profile.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import Header from "./header";
import Information from "./information";
import profile from "@/public/mock/placeholderpic.webp";

const Profile = () => {
return (
Expand All @@ -10,7 +11,7 @@ const Profile = () => {
github="Andrewk1"
discord="Andrewk1"
status="Returning"
profile="/assets/placeholderpic.webp"
profile={profile}
projects={["ACM", "UCR", "testtestesttest"]}
/>
<Information />
Expand Down

0 comments on commit f06da05

Please sign in to comment.