Skip to content

Commit

Permalink
all done
Browse files Browse the repository at this point in the history
  • Loading branch information
hari7261 committed Oct 30, 2024
1 parent 533c26a commit 607da2a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Image from 'next/future/image'
import { useState } from 'react'
import Head from 'next/head'
import Link from 'next/link'
import clsx from 'clsx'
// import clsx from 'clsx'
import { Button } from '@/components/Button'
import { Card } from '@/components/Card'
import { Container } from '@/components/Container'
Expand Down Expand Up @@ -181,7 +181,7 @@ function Photos() {
}

export default function Home({ articles }) {
const [isDarkMode, setIsDarkMode] = useState(false)
const [isDarkMode] = useState(false)
return (
<>
<Head>
Expand Down Expand Up @@ -369,7 +369,7 @@ export default function Home({ articles }) {
and
</span>{" "}
<span className={`${isDarkMode ? "text-orange-300" : "text-orange-500"} font-semibold`}>
AI...
AI...!
</span>
</p>

Expand Down

0 comments on commit 607da2a

Please sign in to comment.