misc update
This commit is contained in:
parent
2e1e0a58dd
commit
0009019899
File diff suppressed because it is too large
Load Diff
|
@ -3,7 +3,7 @@
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "next dev --experimental-https",
|
"dev": "next dev",
|
||||||
"build": "next build",
|
"build": "next build",
|
||||||
"start": "next start",
|
"start": "next start",
|
||||||
"lint": "next lint"
|
"lint": "next lint"
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
import Clock from "@/components/clock";
|
import Clock from "@/components/clock";
|
||||||
import { cn } from "@/lib/utils";
|
import { cn } from "@/lib/utils";
|
||||||
|
import Link from "next/link";
|
||||||
|
|
||||||
export function Footer({ className }: { className?: string }) {
|
export function Footer({ className }: { className?: string }) {
|
||||||
const year = new Date().getFullYear();
|
const year = new Date().getFullYear();
|
||||||
|
@ -14,6 +15,11 @@ export function Footer({ className }: { className?: string }) {
|
||||||
<div>
|
<div>
|
||||||
<p className="text-foreground text-xs">Keep building</p>
|
<p className="text-foreground text-xs">Keep building</p>
|
||||||
</div>
|
</div>
|
||||||
|
<div>
|
||||||
|
<Link className="text-xs text-foreground/60" href="/">
|
||||||
|
./raj
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
<div className="flex items-center gap-2">
|
<div className="flex items-center gap-2">
|
||||||
<p className="text-foreground text-xs">{year}</p>
|
<p className="text-foreground text-xs">{year}</p>
|
||||||
<Clock />
|
<Clock />
|
||||||
|
|
|
@ -36,9 +36,7 @@ export default function Page() {
|
||||||
<Projects />
|
<Projects />
|
||||||
</section>
|
</section>
|
||||||
<section className="stories-section">
|
<section className="stories-section">
|
||||||
{/* <SymetricGradProvider> */}
|
|
||||||
<Stories />
|
<Stories />
|
||||||
{/* </SymetricGradProvider> */}
|
|
||||||
</section>
|
</section>
|
||||||
<section className="now-section">
|
<section className="now-section">
|
||||||
<Now />
|
<Now />
|
||||||
|
|
|
@ -15,6 +15,7 @@ import GrainProvider from "@/components/grain";
|
||||||
import { cn } from "@/lib/utils";
|
import { cn } from "@/lib/utils";
|
||||||
import { Footer } from "../Footer";
|
import { Footer } from "../Footer";
|
||||||
import { Connect } from "../Connect";
|
import { Connect } from "../Connect";
|
||||||
|
import { Home } from "lucide-react";
|
||||||
|
|
||||||
export default async function Story({
|
export default async function Story({
|
||||||
searchParams,
|
searchParams,
|
||||||
|
@ -55,6 +56,10 @@ export default async function Story({
|
||||||
<h1 className="text-2xl text-center text-pretty font-medium">
|
<h1 className="text-2xl text-center text-pretty font-medium">
|
||||||
{title}
|
{title}
|
||||||
</h1>
|
</h1>
|
||||||
|
<div className="border sticky top-12 z-50 mt-2 mx-auto backdrop-blur border-foreground/20 backdrop-saturate-100 backdrop-contrast-125 p-1 px-2 w-fit rounded-full flex gap-1 items-center">
|
||||||
|
<Home className="animate-in" size={12} />
|
||||||
|
<span className="text-xs">Home</span>
|
||||||
|
</div>
|
||||||
<NRenderer recordMap={recordMap} />
|
<NRenderer recordMap={recordMap} />
|
||||||
<section className="connect-section">
|
<section className="connect-section">
|
||||||
<Connect />
|
<Connect />
|
||||||
|
|
|
@ -27,10 +27,16 @@
|
||||||
@apply hidden;
|
@apply hidden;
|
||||||
}
|
}
|
||||||
.notion-collection-card-cover {
|
.notion-collection-card-cover {
|
||||||
@apply h-24;
|
@apply h-24 opacity-80 backdrop-saturate-150 brightness-125;
|
||||||
}
|
}
|
||||||
.notion-collection-card {
|
.notion-collection-card {
|
||||||
@apply rounded-sm opacity-90 backdrop-contrast-200 backdrop-brightness-150 backdrop-saturate-200;
|
@apply rounded shadow bg-transparent backdrop-contrast-125 backdrop-saturate-200;
|
||||||
|
}
|
||||||
|
.notion-page-icon-span {
|
||||||
|
@apply flex items-center justify-center;
|
||||||
|
}
|
||||||
|
.notion-page-title-icon {
|
||||||
|
@apply w-4 h-4;
|
||||||
}
|
}
|
||||||
.notion-gallery-grid {
|
.notion-gallery-grid {
|
||||||
@apply border-none pt-0;
|
@apply border-none pt-0;
|
||||||
|
|
Loading…
Reference in New Issue