Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 1 addition & 12 deletions src/components/pages/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,7 @@ import { NavbarPlaceholder } from "@/components/layout";
import { RollingImages } from "@/components/ui";
import { useDevice, useTheme } from "@/hooks";
import { Button, Link } from "@heroui/react";
import {
SiBilibili,
SiGithub,
SiInstagram,
SiLinkedin,
SiPexels,
} from "react-icons/si";
import { SiGithub, SiInstagram, SiLinkedin, SiPexels } from "react-icons/si";

interface SocialMediaLink {
text: string;
Expand Down Expand Up @@ -38,11 +32,6 @@ const socialMediaLinks: SocialMediaLink[] = [
href: "https://www.pexels.com/@perry-z-1662054943/",
icon: <SiPexels />,
},
{
text: "Bilibili",
href: "https://space.bilibili.com/384057718",
icon: <SiBilibili />,
},
];

const introductionText = [
Expand Down
19 changes: 1 addition & 18 deletions src/components/ui/ContactInfoCard.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,7 @@
import { Card, CardBody, Divider, Button, Link } from "@heroui/react";
import { ContactInfoItem } from "./ContactInfoItem";
import { MdEmail, MdLocationOn, MdPerson } from "react-icons/md";
import {
SiBilibili,
SiGithub,
SiInstagram,
SiLinkedin,
SiPexels,
} from "react-icons/si";
import { SiGithub, SiInstagram, SiLinkedin, SiPexels } from "react-icons/si";

export function ContactInfoCard() {
return (
Expand Down Expand Up @@ -95,17 +89,6 @@ export function ContactInfoCard() {
<SiPexels className="h-5 w-5 sm:h-6 sm:w-6" />
<span>Pexels</span>
</Button>

<Button
as="a"
href="https://space.bilibili.com/384057718"
className="gradient-button-hover-responsive flex items-center gap-2 border border-[#5ad6ff]/50 bg-white px-5 py-3 text-sm text-gray-700 shadow-sm dark:border-[#5ad6ff]/70 dark:bg-gray-800 dark:text-gray-200 sm:text-lg"
target="_blank"
rel="noopener noreferrer"
>
<SiBilibili className="h-5 w-5 sm:h-6 sm:w-6" />
<span>Bilibili</span>
</Button>
</div>
</div>
</CardBody>
Expand Down
Loading