File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import {BsFillTerminalFill} from "react-icons/bs";
4
4
5
5
export default function IndexPage ( ) {
6
6
return (
7
+ // eslint-disable-next-line tailwindcss/no-contradicting-classname
7
8
< div id = "home" className = "bg-[url('/bg.png')] bg-center" >
8
9
< div className = { "flex h-screen items-center justify-center" } >
9
10
< section className = "container grid items-center justify-center gap-6 pb-8 pt-6 md:py-10" >
Original file line number Diff line number Diff line change 1
1
import * as React from "react"
2
2
import Link from "next/link"
3
3
4
- import { NavItem } from "@/types/nav"
5
- import { siteConfig } from "@/config/site"
6
- import { cn } from "@/lib/utils"
7
- import { Icons } from "@/components/icons"
4
+ import { NavItem } from "@/types/nav"
5
+ import { cn } from "@/lib/utils"
6
+ import { Icons } from "@/components/icons"
8
7
9
8
interface MainNavProps {
10
9
items ?: NavItem [ ]
11
10
}
12
11
13
- export function MainNav ( { items } : MainNavProps ) {
12
+ export function MainNav ( { items} : MainNavProps ) {
14
13
return (
15
14
< div className = "flex gap-6 md:gap-10" >
16
- < Link href = "/" className = "items-center space-x-2 flex " >
17
- < Icons . logo className = "h-6 w-6" />
15
+ < Link href = "/" className = "flex items-center space-x-2" >
16
+ < Icons . logo className = "h-6 w-6" />
18
17
</ Link >
19
18
{ items ?. length ? (
20
19
< nav className = "hidden gap-6 md:flex" >
You can’t perform that action at this time.
0 commit comments