Skip to content

Commit 0311cec

Browse files
committed
style: organize imports
1 parent 90d9ae8 commit 0311cec

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

apps/gifting-concierge/src/app/components/hero.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import Link from "next/link";
21
import { cn } from "@theliaison/ui";
32
import { buttonVariants } from "@theliaison/ui/button";
3+
import Link from "next/link";
44

55
import { Particles } from "@theliaison/ui/magicui/particles";
6-
import { SendGiftPopover } from "./send-gift-popover";
76
import { HeroTextAnimation } from "./hero-text-animation";
7+
import { SendGiftPopover } from "./send-gift-popover";
88

99
export function Hero() {
1010
return (

apps/gifting-concierge/src/app/components/send-gift-popover.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1+
import { Button } from "@theliaison/ui/button";
12
import {
23
Popover,
34
PopoverContent,
45
PopoverTrigger,
56
} from "@theliaison/ui/popover";
6-
import { Button } from "@theliaison/ui/button";
77
import { GiftIcon, LinkIcon, StoreIcon } from "lucide-react";
88
import Link from "next/link";
99

apps/gifting-concierge/src/app/confirm/layout.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import type { Metadata } from "next";
21
import { WordRotate } from "@theliaison/ui/magicui/word-rotate";
3-
import { Header } from "./[giftId]/header";
2+
import type { Metadata } from "next";
43
import Link from "next/link";
4+
import { Header } from "./[giftId]/header";
55

66
const navLinks = [
77
{
@@ -78,10 +78,8 @@ export default function Layout({ children }: { children: React.ReactNode }) {
7878
{navLinks.map((item) => (
7979
<Link
8080
key={item.name}
81-
isExternal
8281
className="text-default-500"
8382
href={item.href}
84-
size="sm"
8583
>
8684
{item.name}
8785
</Link>

0 commit comments

Comments
 (0)