Skip to content

Commit

Permalink
fa
Browse files Browse the repository at this point in the history
  • Loading branch information
neerajrekwar committed Jun 15, 2024
1 parent 7a5db38 commit bef516e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/components/FlipWords.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export function FlipWordsDemo() {

return (
<div className="h-[40rem] flex justify-center items-center px-4">
<div className="sm:text-4xl text-xl mx-auto font-normal text-neutral-600 dark:text-neutral-400">
<div className="sm:text-4xl text-xl mx-auto font-normal dark:text-white">
Build
<FlipWords words={words} /> <br />
websites with Aceternity UI
Expand Down
2 changes: 1 addition & 1 deletion app/components/ui/flip-words.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export const FlipWords = ({
position: "absolute",
}}
className={cn(
"z-10 inline-block relative text-left text-neutral-900 dark:text-white px-2",
"z-10 inline-block relative text-left dark:text-white px-2",
className,
)}
key={currentWord}
Expand Down
2 changes: 1 addition & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { LampDemo } from "./components/lampBar";

export default function Home() {
return (
<main className="antialiased dark:bg-white overflow-hidden">
<main className="antialiased overflow-hidden">
<AuroraBackgroundDemo />
<div className="overflow-hidden h-screen">
<FlipWordsDemo />
Expand Down

0 comments on commit bef516e

Please sign in to comment.