Skip to content

Commit

Permalink
Merge pull request #5 from sethmorton/chrisreact
Browse files Browse the repository at this point in the history
modified
  • Loading branch information
Christopher-Chhim authored Oct 12, 2024
2 parents 2ec4538 + 6a30a5c commit 56a2d88
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions src/app/components/Context/UrlButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import { Button } from "./Button";
import React, { FC } from "react";
import { IconContext } from "react-icons";
import { AiOutlineLink } from "react-icons/ai";
import { SiReddit } from "react-icons/si"; // Import Reddit icon
import Link from "next/link";

export interface IUrlEntry {
Expand Down Expand Up @@ -34,11 +34,11 @@ const UrlButton: FC<IURLButtonProps> = ({ entry, onClick }) => (
href={entry.url}
target="_blank"
rel="noopener noreferrer"
className="bg-blue-500 hover:bg-blue-600 active:bg-brand-700 dark:bg-brand-400 dark:hover:bg-brand-300 dark:active:bg-brand-200 flex items-center justify-center rounded-full p-2 text-3xl text-white transition duration-200 hover:cursor-pointer dark:text-white"
className="bg-white-500 hover:bg-white-600 active:bg-brand-700 dark:bg-brand-400 dark:hover:bg-brand-300 dark:active:bg-brand-200 flex items-center justify-center rounded-full p-2 text-3xl text-white transition duration-200 hover:cursor-pointer dark:text-white"
>
<AiOutlineLink
color="white"
fontSize={14}
<SiReddit
color="red"
fontSize={24}
className="hover:text-green"
/>
</a>
Expand All @@ -48,7 +48,7 @@ const UrlButton: FC<IURLButtonProps> = ({ entry, onClick }) => (
style={{
zIndex: -1,
background:
"linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent)",
"linear-gradient(90deg, white, rgba(255,255,255,0.5), white)",
animation: "shimmer 2s infinite",
}}
></div>
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default function Header({ className }: { className?: string }) {
<header
className={`flex items-center justify-center text-gray-200 text-2xl ${className}`}
>
<div className="text-4xl ml-3 mr-3">+</div>
<div className="text-4xl ml-3 mr-3">Embeddit</div>
</header>
);
}
2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const Page: React.FC = () => {
<button
onClick={() => {
window.open(
"https://github.com/pinecone-io/pinecone-vercel-starter",
"https://github.com/sethmorton/embeddit",
"_blank"
);
}}
Expand Down

0 comments on commit 56a2d88

Please sign in to comment.