correcting build errors
All checks were successful
Next.js App CI / docker (push) Successful in 9m52s
All checks were successful
Next.js App CI / docker (push) Successful in 9m52s
This commit is contained in:
@@ -71,7 +71,6 @@ export function FilterableExperienceGrid({ posts, tags }: Props) {
|
|||||||
dates={post.date}
|
dates={post.date}
|
||||||
tags={post.tags}
|
tags={post.tags}
|
||||||
image={post.image || ""}
|
image={post.image || ""}
|
||||||
video={post.video}
|
|
||||||
/>
|
/>
|
||||||
</BlurFade>
|
</BlurFade>
|
||||||
))}
|
))}
|
||||||
@@ -116,7 +115,6 @@ export function FilterableExperienceGrid({ posts, tags }: Props) {
|
|||||||
dates={post.date}
|
dates={post.date}
|
||||||
tags={post.tags}
|
tags={post.tags}
|
||||||
image={post.image || ""}
|
image={post.image || ""}
|
||||||
video={post.video}
|
|
||||||
/>
|
/>
|
||||||
</BlurFade>
|
</BlurFade>
|
||||||
))}
|
))}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { Badge } from "@/components/ui/badge";
|
//import { Badge } from "@/components/ui/badge";
|
||||||
import { cn } from "@/lib/utils";
|
import { cn } from "@/lib/utils";
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
import Markdown from "react-markdown";
|
import Markdown from "react-markdown";
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
"use client";
|
"use client";
|
||||||
import { Button, buttonVariants } from "@/components/ui/button";
|
import { Button } from "@/components/ui/button";
|
||||||
import { CardTitle } from "@/components/ui/card";
|
import { CardTitle } from "@/components/ui/card";
|
||||||
import {
|
import {
|
||||||
Tooltip,
|
Tooltip,
|
||||||
@@ -16,7 +16,7 @@ import {
|
|||||||
X,
|
X,
|
||||||
} from "lucide-react";
|
} from "lucide-react";
|
||||||
import Image from "next/image";
|
import Image from "next/image";
|
||||||
import { useEffect, useState } from "react";
|
import { useState } from "react";
|
||||||
import { TrackedButton } from "./util-tracked-button";
|
import { TrackedButton } from "./util-tracked-button";
|
||||||
import { TrackedLink } from "./util-tracked-link";
|
import { TrackedLink } from "./util-tracked-link";
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user