-
+
+
+
{title}
- {externalLink && }
+ {externalLink && (
+
+ )}
-
-
- {tags.map((tag) => (
-
- ))}
-
-
-
+
);
};
diff --git a/app/articles/page.tsx b/app/articles/page.tsx
new file mode 100644
index 00000000..bdc8d89f
--- /dev/null
+++ b/app/articles/page.tsx
@@ -0,0 +1,15 @@
+import type { Metadata } from "next";
+
+import { ArticleList } from "../_features";
+
+export default function Page() {
+ return (
+
+
+
+ );
+}
+
+export const metadata: Metadata = {
+ title: "Articles",
+};
diff --git a/app/globals.css b/app/globals.css
index 1e29ac24..b72a6a33 100644
--- a/app/globals.css
+++ b/app/globals.css
@@ -112,6 +112,10 @@
animation-delay: calc(var(--enter-initial) + var(--enter-stage) * var(--enter-step));
}
+ .blur-enter-content.enter-step-150 > * {
+ --enter-step: 150ms;
+ }
+
.blur-enter-content > *:nth-child(1) {
--enter-stage: 1;
}
+
{title}
- {externalLink && }
+ {externalLink && (
+
+ )}
-
-
+
- {tags.map((tag) => (
-
- ))}
-
-
-