text
stringlengths
3
8.33k
repo
stringclasses
52 values
path
stringlengths
6
141
language
stringclasses
35 values
sha
stringlengths
64
64
chunk_index
int32
0
273
n_tokens
int32
1
896
'use client'; import { cn } from '@julian-at/lib/utils'; import Link, { type LinkProps } from 'next/link'; import { usePathname } from 'next/navigation'; import type { ReactNode } from 'react'; type ActiveLinkProps = LinkProps & { children: ReactNode; href: string; target?: string; rel?: string; onClick?: (...
portfolio
components/active-link.tsx
TypeScript
e7ef791bdcedb89a5fefe5cf80321b93dd43c7c95bd21408f0f80b751955bdbe
0
234
'use client'; import { Analytics } from '@vercel/analytics/react'; import { Component, type ReactNode, useEffect, useState } from 'react'; /** * Catches errors from Vercel Analytics (e.g. when script is blocked by content blocker) * so they do not surface as unhandled errors in Lighthouse Best Practices. */ class ...
portfolio
components/analytics-deferred.tsx
TypeScript
192fa74477c6bb75c200764add06cac7f9ad67bb97c373c780b1fac17788e2a8
0
230
import { cn } from '@julian-at/lib/utils'; import type { ComponentProps } from 'react'; type ProseProps = ComponentProps<'div'>; export const Prose = ({ className, ...props }: ProseProps) => ( <div className={cn('prose prose-neutral dark:prose-invert', className)} {...props} /> );
portfolio
components/prose.tsx
TypeScript
f469096deeac796c7e3c26ee76c427606fa09fef9e8a9c714c713529b2c9234b
0
87
'use client'; import { usePathname } from 'next/navigation'; import { useEffect } from 'react'; export const ScrollToTop = () => { const pathname = usePathname(); // biome-ignore lint/correctness/useExhaustiveDependencies: scroll to top on page change useEffect(() => { window.scrollTo(0, 0); }, [pathname...
portfolio
components/scroll-to-top.tsx
TypeScript
f795ea3190b1db1a1198a86e5ef6155930527fa13dfaea29d3f09b6d05db9e69
0
86
import { cn } from '@julian-at/lib/utils'; import { ViewAnimation } from '@julian-at/providers/view-animation'; import { PlusIcon } from 'lucide-react'; import type { HTMLAttributes } from 'react'; type SectionProps = HTMLAttributes<HTMLDivElement>; const Cross = () => ( <div aria-hidden className="relative h-6 w-6...
portfolio
components/section.tsx
TypeScript
42aeec2c3d9d5bf0f3127cbfe33df0804a072421224851982d4489d7caa4c274
0
360
import { Button } from '@julian-at/components/ui/button'; import { ExternalLink } from '@julian-at/components/ui/external-link'; import type { social } from '@julian-at/lib/social'; import Image from 'next/image'; type SocialButtonProps = { data: (typeof social)[keyof typeof social]; }; export const SocialButton = ...
portfolio
components/social-button.tsx
TypeScript
e63d728beb22d38c09e73b10b14b1f51cdc485a5f134aa7979fb2fb85319a934
0
184
'use client'; import dynamic from 'next/dynamic'; export const WindowsEmojiPolyfillDynamic = dynamic( () => import('@julian-at/components/windows-emoji-polyfill').then((mod) => ({ default: mod.WindowsEmojiPolyfill, })), { ssr: false } );
portfolio
components/windows-emoji-polyfill-dynamic.tsx
TypeScript
7e180475c92f9b693b72dc65ceac73372f85a6ddf8f4c2939ec65d0ddc155788
0
68
'use client'; import { polyfillCountryFlagEmojis } from 'country-flag-emoji-polyfill'; import { useEffect } from 'react'; export const WindowsEmojiPolyfill = () => { useEffect(() => { polyfillCountryFlagEmojis(); }, []); return null; };
portfolio
components/windows-emoji-polyfill.tsx
TypeScript
f8c55d088996b1fa4651c36c596197d78ceac16596003587099e54e8d437a569
0
60
import { Section } from '@julian-at/components/section'; import { Skeleton } from '@julian-at/components/ui/skeleton'; export function AboutContentFallback() { return ( <> <Section className="grid items-start divide-y sm:grid-cols-2 sm:divide-x sm:divide-y-0"> <div className="flex flex-col gap-4 px...
portfolio
components/about/about-content-fallback.tsx
TypeScript
9748e6679b4b7d8173cc843b8c9715bbf982be6774065fe2b03bfaa40be08909
0
399
import { Prose } from '@julian-at/components/prose'; import { Section } from '@julian-at/components/section'; import { cn } from '@julian-at/lib/utils'; import { ViewAnimation } from '@julian-at/providers/view-animation'; import Image from 'next/image'; import ReactMarkdown from 'react-markdown'; import remarkGfm from ...
portfolio
components/about/content.tsx
TypeScript
9d96c4dfd3558741b0c2ce6fd2d85b413df01b3269d67904c7d26851aad3a4a3
0
630
import { HeroSection } from '@julian-at/components/sections/hero'; type HeroProps = { caption?: string | null; title?: string; }; export const Hero = ({ caption = 'About', title = 'AI/ML Engineer building intelligent applications in 🇦🇹 Vienna, Austria', }: HeroProps) => <HeroSection caption={caption} title=...
portfolio
components/about/hero.tsx
TypeScript
ef0aa9cced5d47fa6022559505757ce0a3da342343a0c1d129a582fb78e275aa
0
87
import { Book as ShadcnBook } from '@julian-at/components/ui/book'; import { ExternalLink } from '@julian-at/components/ui/external-link'; import type { BookItem } from '@julian-at/lib/content-types'; import { cn } from '@julian-at/lib/utils'; import Image from 'next/image'; export function BookCard(book: BookItem) { ...
portfolio
components/about/books/book-card.tsx
TypeScript
3f6c2ba6f4d9a5706a74fb1eb0c749c90feee54e1b49306e09093fb5c5dccabc
0
311
import { Section } from '@julian-at/components/section'; import { Skeleton } from '@julian-at/components/ui/skeleton'; import { cn } from '@julian-at/lib/utils'; export function BooksSkeleton() { return ( <Section className="px-4 py-8 sm:px-8"> <div className={cn( 'flex flex-col gap-4', ...
portfolio
components/about/books/books-skeleton.tsx
TypeScript
4788185fc6b62d284ee5f84e9d987437ff6f6acf18ae72bdf5b3977936170c64
0
305
import { BookCard } from '@julian-at/components/about/books/book-card'; import { Section } from '@julian-at/components/section'; import { Tabs, TabsContent, TabsList, TabsTrigger, } from '@julian-at/components/ui/tabs'; import type { BooksByStatus } from '@julian-at/lib/content-types'; import { getBooks } from ...
portfolio
components/about/books/index.tsx
TypeScript
68b5d336bff3d09027891ac4037687b85e4935b9c746b8a420e7866058111522
0
791
import { Prose } from '@julian-at/components/prose'; import { Section } from '@julian-at/components/section'; import { LogoImage } from '@julian-at/components/ui/logo-image'; import type { Certificate } from '@julian-at/lib/content-types'; import { env } from '@julian-at/lib/env'; import { cn } from '@julian-at/lib/uti...
portfolio
components/about/certificates/index.tsx
TypeScript
ce3ee80696978e4be00561e253527839e47c74b1352f5e19c07e124230eae376
0
770
'use client'; import { Skeleton } from '@julian-at/components/ui/skeleton'; import dynamic from 'next/dynamic'; const CalEmbed = dynamic( () => import('@julian-at/components/contact/cal-embed').then((mod) => ({ default: mod.CalEmbed, })), { ssr: false, loading: () => <Skeleton className="min...
portfolio
components/contact/cal-embed-dynamic.tsx
TypeScript
e9364b2c1da98b011a99fa939ec46f60326992390112355241256d8caeb50dab
0
159
'use client'; import Cal from '@calcom/embed-react'; type CalEmbedProps = { username: string; eventSlug?: string | null; }; export function CalEmbed({ username, eventSlug }: CalEmbedProps) { if (!username) { return null; } const calLink = eventSlug ? `${username}/${eventSlug}` : username; return ( ...
portfolio
components/contact/cal-embed.tsx
TypeScript
9a336d4176e50f021235e38e6242f79e71d8b0c93d63e5a9b2b467f72d751794
0
137
import { HeroSection } from '@julian-at/components/sections/hero'; import Balancer from 'react-wrap-balancer'; type HeroProps = { title?: string | null; description?: string | null; }; export const Hero = ({ title = "Let's work together on your next project. Get in touch with me.", description, }: HeroProps) ...
portfolio
components/contact/hero.tsx
TypeScript
8e659589e69abed351bb0590e27bb24daea5d9e6a4824fd2d65c60abe6fb2128
0
164
import { Links } from '@julian-at/components/footer/links'; import { Status } from '@julian-at/components/footer/status'; import { ThemeSwitcherDynamic } from '@julian-at/components/footer/theme-switcher-dynamic'; import { cn } from '@julian-at/lib/utils'; import { ViewAnimation } from '@julian-at/providers/view-animat...
portfolio
components/footer/index.tsx
TypeScript
b71c63147c8f8ce4f79e2e59fbb29683871975d0946a1fe0977448b560d83d02
0
484
import { ActiveLink } from '@julian-at/components/active-link'; import { getProjects, getRoles } from '@julian-at/lib/data'; import { navigation } from '@julian-at/lib/navigation'; import { social } from '@julian-at/lib/social'; import { ViewAnimation } from '@julian-at/providers/view-animation'; import Image from 'nex...
portfolio
components/footer/links.tsx
TypeScript
3d9163f7e123e82cd4367b66132f665689960562c373be399d1f166dc8dfcee3
0
726
import 'server-only'; export const Status = async () => { return ( <div className="flex items-center gap-3 text-sm"> <span className="relative flex h-2 w-2"> <span className={ 'absolute inline-flex size-full animate-ping rounded-full opacity-75 bg-success' } /...
portfolio
components/footer/status.tsx
TypeScript
bae9bd6eb58973f63d630ce195a023443b386271c309be36bea8b39b4763a5d7
0
137
'use client'; import dynamic from 'next/dynamic'; const ThemeSwitcher = dynamic( () => import('@julian-at/components/footer/theme-switcher').then((mod) => ({ default: mod.ThemeSwitcher, })), { ssr: false, loading: () => ( <div className="h-9 w-24 animate-pulse rounded bg-muted" aria-hi...
portfolio
components/footer/theme-switcher-dynamic.tsx
TypeScript
6b65106e1227493b8e0e948d0adbaa1d5dd49ff5c19497b89369b715831d3c84
0
114
'use client'; import { cn } from '@julian-at/lib/utils'; import { Monitor, Moon, Sun } from 'lucide-react'; import { useTheme } from 'next-themes'; import { useEffect, useState } from 'react'; const themes = [ { key: 'system', icon: Monitor, label: 'System theme' }, { key: 'light', icon: Sun, label: 'Light theme'...
portfolio
components/footer/theme-switcher.tsx
TypeScript
2b8f20c9e9db3393ae067a10cbccbe5e0755efe376357c4c79886e76daa43ad9
0
420
import { ActiveLink } from '@julian-at/components/active-link'; import { MobileMenu } from '@julian-at/components/header/mobile-menu'; import { MobileMenuTrigger } from '@julian-at/components/header/mobile-menu-trigger'; import { Button } from '@julian-at/components/ui/button'; import { navigation } from '@julian-at/li...
portfolio
components/header/index.tsx
TypeScript
4c95c0541f8c7c26b14973cb4aabef64a97769978d5d815034a44f9be1c1f409
0
625
'use client'; import { mobileMenuOpen } from '@julian-at/components/header/mobile-menu'; import { Button } from '@julian-at/components/ui/button'; import { useAtom } from 'jotai'; import { MenuIcon, XIcon } from 'lucide-react'; export const MobileMenuTrigger = () => { const [isOpen, setIsOpen] = useAtom(mobileMenuO...
portfolio
components/header/mobile-menu-trigger.tsx
TypeScript
b8d8bdb59683c45c7fd5439770f6d82af95f76119d3ba10d9233165194ba8076
0
200
'use client'; import { ActiveLink } from '@julian-at/components/active-link'; import { Button } from '@julian-at/components/ui/button'; import { navigation } from '@julian-at/lib/navigation'; import { cn } from '@julian-at/lib/utils'; import { atom, useAtom } from 'jotai'; import Link from 'next/link'; import { usePat...
portfolio
components/header/mobile-menu.tsx
TypeScript
e681a41aefda40388d3db1b601c30651cb6297619009c6bc7799b6a2bfbbd99a
0
557
'use client'; import tailwind from '@julian-at/lib/tailwind'; import { useTheme } from 'next-themes'; import ActivityCalendar, { type Activity } from 'rsc-activity-calendar'; interface ActivityCalendarWrapperProps { data: Activity[]; } const ActivityCalendarWrapper = ({ data }: ActivityCalendarWrapperProps) => { ...
portfolio
components/home/activity-calendar-wrapper.tsx
TypeScript
c13f8bc15dc42f3420e22e564c4b0ee4cf14a84292a7202ee97c9a0491aefdc9
0
249
'use client'; import { ThirdsSection } from '@julian-at/components/sections/thirds'; import { cn } from '@julian-at/lib/utils'; import { useIntersectionObserver } from '@uidotdev/usehooks'; import Image from 'next/image'; import { useState } from 'react'; export const Currently = () => { const [isVideoLoaded, setIs...
portfolio
components/home/currently.tsx
TypeScript
47389fbba3a6cf45d9e8f6191fb3864a246d85873fbb07ed95532adee8310997
0
565
import { octokit } from '@julian-at/lib/github'; import type { RestEndpointMethodTypes } from '@octokit/rest'; import { CommentIcon, FeedPublicIcon, GitBranchIcon, GitCommitIcon, GitPullRequestIcon, IssueClosedIcon, IssueOpenedIcon, IssueReopenedIcon, IssueTrackedByIcon, IssueTracksIcon, RepoForke...
portfolio
components/home/event.tsx
TypeScript
f9f587f188d990583b1303f462576d4e3024a41b3cee8b386a376cb4ec775760
0
896
div className="flex-1 truncate"> Merged {pullRequest.user.login}'s {pullRequest.title} on{' '} {event.repo.name} </div> <EventDate date={event.created_at} /> </div> ); }; const IssuesEvent = ({ event }: { event: GitHubEvent }) => { const action = ( event.payload as { actio...
portfolio
components/home/event.tsx
TypeScript
9c7f057fadd30d4c050496c96f87171c98e95120ef2721c00d25742325fa3e64
1
896
: GitHubEvent }) => ( <div className="flex items-center gap-4"> <StarIcon className="h-4 w-4 shrink-0" /> <div className="flex-1 truncate">Starred {event.repo.name}</div> <EventDate date={event.created_at} /> </div> ); const ForkEvent = ({ event }: { event: GitHubEvent }) => ( <div className="flex it...
portfolio
components/home/event.tsx
TypeScript
2cabf032f902e75852563a2e036a4b563d698f44dd582c03dc536f88555d07f3
2
758
import { ThirdsSection } from '@julian-at/components/sections/thirds'; import { ExternalLink } from '@julian-at/components/ui/external-link'; import { cn } from '@julian-at/lib/utils'; import Image from 'next/image'; export const FeaturedNews = () => ( <ThirdsSection title="AI Assisted Dev Paper" description...
portfolio
components/home/featured-news.tsx
TypeScript
73c7b780bb13e45d8fd764d6852b940cc2d287c63fd05ce79bbacfb6447e6306
0
400
'use client'; import { ThirdsSection } from '@julian-at/components/sections/thirds'; import { cn } from '@julian-at/lib/utils'; import { useIntersectionObserver } from '@uidotdev/usehooks'; import Image from 'next/image'; import { useState } from 'react'; export const FeaturedProject = () => { const [isVideoLoaded,...
portfolio
components/home/featured-project.tsx
TypeScript
1438b45a077b0a4b8513ccbc973ab6bd62bed7cb6993e3b30847e81340583cd9
0
595
import { GitHubEvent } from '@julian-at/components/home/event'; import { Section } from '@julian-at/components/section'; import { octokit } from '@julian-at/lib/github'; import { cn } from '@julian-at/lib/utils'; import { ViewAnimation } from '@julian-at/providers/view-animation'; import { unstable_cache } from 'next/c...
portfolio
components/home/feed.tsx
TypeScript
e6307df9aaa552a445da22d5b970df88bdd558415c21151b068c9ff58dfc57d6
0
351
import { getGithubActivity } from '@julian-at/app/actions/get-github-activity'; import { Section } from '@julian-at/components/section'; import { ExternalLink } from '@julian-at/components/ui/external-link'; import { social } from '@julian-at/lib/social'; import tailwind from '@julian-at/lib/tailwind'; import { ViewAni...
portfolio
components/home/github-activity.tsx
TypeScript
543cb655a5ae573a32eefad238b9ae58757e48bb541c0019c8d7fd8a9bdaca95
0
582
import { HeroSection } from '@julian-at/components/sections/hero'; import { Button } from '@julian-at/components/ui/button'; import { StaggeredText } from '@julian-at/components/ui/staggered-text'; import { cn } from '@julian-at/lib/utils'; import Image from 'next/image'; import Link from 'next/link'; type CTALink = {...
portfolio
components/home/hero.tsx
TypeScript
f004988f18c0adc1c76e3463b1cd6fcefdbdc32cb93eac9a70e322833f5a6f41
0
594
import { cn } from '@julian-at/lib/utils'; export function RecentBookFallback() { return ( <div className={cn( 'flex h-80 animate-pulse flex-col justify-between gap-2 rounded-lg border bg-background p-8 shadow-sm' )} aria-hidden > <div className="flex min-h-0 flex-1 items-star...
portfolio
components/home/recent-book-fallback.tsx
TypeScript
c18c3e2062bc06215d4e5003b797990c7a82f84a16a2eed3f0eeef5dd6e0f5fe
0
389
import { Book as ShadcnBook } from '@julian-at/components/ui/book'; import { ExternalLink } from '@julian-at/components/ui/external-link'; import type { BookItem } from '@julian-at/lib/content-types'; import { getBooks } from '@julian-at/lib/data'; import { cn } from '@julian-at/lib/utils'; import { ViewAnimation } fro...
portfolio
components/home/recent-book.tsx
TypeScript
2fa8bd90a63336a90e98fef934d6b9e15ddb58b91cb73a0f8eee2e54da0a1f14
0
627
import { cn } from '@julian-at/lib/utils'; export function SpotifyFallback() { return ( <div className={cn( 'flex h-80 animate-pulse flex-col justify-between gap-2 rounded-lg border bg-background p-8 shadow-sm' )} aria-hidden > <div className="flex min-h-0 flex-1 items-start j...
portfolio
components/home/spotify-fallback.tsx
TypeScript
2641af47bba40e88c11b8818e71fa47bf130e3c2a7edd1c5eba07c70929e4350
0
196
'use client'; import { RecentBookFallback } from '@julian-at/components/home/recent-book-fallback'; import { SpotifyFallback } from '@julian-at/components/home/spotify-fallback'; import { fetchSpotifyNow, spotifyNowKey, spotifySwrOptions, } from '@julian-at/lib/spotify-now'; import type { ReactNode } from 'react...
portfolio
components/home/spotify-load-gate.tsx
TypeScript
8f65e607343eeda2991ab2e37dddd7425d74a25ac955103ca6fac50cd8522fba
0
223
'use client'; import { ExternalLink } from '@julian-at/components/ui/external-link'; import { fetchSpotifyNow, spotifyNowKey, spotifySwrOptions, } from '@julian-at/lib/spotify-now'; import { cn } from '@julian-at/lib/utils'; import { ViewAnimation } from '@julian-at/providers/view-animation'; import Image from '...
portfolio
components/home/spotify.tsx
TypeScript
013121975a775a331b7d82671374421f066294696b968b09c00ad8d6e51aafdb
0
720
import { ProjectCard, projectCardDescriptionClass, } from '@julian-at/components/projects/project-card'; import { ProjectVideo } from '@julian-at/components/projects/video'; import { Section } from '@julian-at/components/section'; import { Badge } from '@julian-at/components/ui/badge'; import type { Project } from ...
portfolio
components/projects/apps.tsx
TypeScript
65285b1fd85ff4f28b545934e34abea037c4c89c6671da30ac9f4caa1d6a5567
0
793
import { ProjectCard, projectCardMetaClass, } from '@julian-at/components/projects/project-card'; import { StickyList } from '@julian-at/components/sections/sticky-list'; import { LogoImage } from '@julian-at/components/ui/logo-image'; import type { Hackathon } from '@julian-at/lib/content-types'; import { env } fr...
portfolio
components/projects/hackathons.tsx
TypeScript
7239f7201acd94f640352687e8c599f2599e5e4e23942f04ac8be85587d5b81c
0
825
import { HeroSection } from '@julian-at/components/sections/hero'; import { SocialButton } from '@julian-at/components/social-button'; import { social } from '@julian-at/lib/social'; export const Hero = () => ( <HeroSection caption="Projects" title="A collection of side projects and experiments I've built al...
portfolio
components/projects/hero.tsx
TypeScript
a2a2c57f11a8ede833d9579d26d71f3de502fcd933663a1b4e13f1f455ab3fca
0
144
import { cn } from '@julian-at/lib/utils'; export const PROJECT_CARD_PADDING = 'px-4 py-6 sm:px-8 sm:py-8'; export const PROJECT_CARD_HOVER = 'transition-all duration-200 hover:-translate-y-0.5 hover:bg-background hover:shadow-md'; export const PROJECT_CARD_MIN_HEIGHT = 'min-h-[200px]'; export function getProjectCa...
portfolio
components/projects/project-card-styles.ts
TypeScript
f0a475572b5bc0ff1da3c1fd2e9453e89a6c6e7fb98cd71fb9cc6c982135baf5
0
144
import { getProjectCardCellClass, PROJECT_CARD_HOVER, PROJECT_CARD_MIN_HEIGHT, PROJECT_CARD_PADDING, } from '@julian-at/components/projects/project-card-styles'; import { ExternalLink } from '@julian-at/components/ui/external-link'; import { cn } from '@julian-at/lib/utils'; import Link from 'next/link'; import...
portfolio
components/projects/project-card.tsx
TypeScript
5128bf45a13c8f81dd597536b7f0feba8282ae389b57d8d716e0cb4d4e09682a
0
627
'use client'; import { cn } from '@julian-at/lib/utils'; import { useIntersectionObserver } from '@uidotdev/usehooks'; import { memo, useEffect, useRef } from 'react'; type ProjectVideoProps = { url: string; zoom?: number; poster?: string; }; export const ProjectVideo = memo(function ProjectVideo({ url, zo...
portfolio
components/projects/video.tsx
TypeScript
6e3784189d4f0676f3c2b2afb620ea968f31c68496b7d81a42c8935db4c09b89
0
360
'use client'; import { Section } from '@julian-at/components/section'; import { cn } from '@julian-at/lib/utils'; import { m } from 'motion/react'; import { Children, memo, type ReactNode } from 'react'; import { Balancer } from 'react-wrap-balancer'; type HeroProps = { image?: ReactNode; caption?: string | null;...
portfolio
components/sections/hero.tsx
TypeScript
d4ec6d2cffbaf6e2f837ccf84b0f754d1e1ffd84d87ffcc31b174cc93523878b
0
731
import { Prose } from '@julian-at/components/prose'; import { Section } from '@julian-at/components/section'; import { cn } from '@julian-at/lib/utils'; import type { ReactNode } from 'react'; type StickyListProps = { title: string; description?: string; children: ReactNode; }; export const StickyList = ({ ti...
portfolio
components/sections/sticky-list.tsx
TypeScript
0677b7cf90638dcb1fc48b556c53b9e0b459834aed1dd959f97b712294824317
0
251
import { Prose } from '@julian-at/components/prose'; import { Section } from '@julian-at/components/section'; import { Button } from '@julian-at/components/ui/button'; import { ViewAnimation } from '@julian-at/providers/view-animation'; import { ArrowUpRightIcon } from 'lucide-react'; import type { ReactNode } from 're...
portfolio
components/sections/thirds.tsx
TypeScript
0439b511625ee16a29c81e537feaa7da55bb11847b4adb729088f1901e7586a1
0
651
import { StickyList } from '@julian-at/components/sections/sticky-list'; import { ExternalLink } from '@julian-at/components/ui/external-link'; import { LogoImage } from '@julian-at/components/ui/logo-image'; import type { Tool } from '@julian-at/lib/content-types'; import { env } from '@julian-at/lib/env'; import { cn...
portfolio
components/stack/apps.tsx
TypeScript
493d8bdedccb69fda69697111acfb08f9141fe41ea732f4eb32cab65cc5e6e65
0
841
import { ExternalLink } from '@julian-at/components/ui/external-link'; export const Attribution = () => ( <div className="flex items-center justify-center bg-dashed p-4 text-muted-foreground text-sm"> <ExternalLink href="https://logo.dev" aria-label="Logo API"> Logos provided by Logo.dev </ExternalLink...
portfolio
components/stack/attribution.tsx
TypeScript
d379b9210fd6d204159181bbdf42f3128a1002190ee6c8a16bd2c03e27edc222
0
95
import { HeroSection } from '@julian-at/components/sections/hero'; export const Hero = () => ( <HeroSection caption="Stack" title="Essential tools and apps that supercharge my development process." /> );
portfolio
components/stack/hero.tsx
TypeScript
f56ee9419845901455ea4a40a8ad756d8f5d7bb9a7d39879e51ae0ef3c0a17ae
0
52
import { cn } from '@julian-at/lib/utils'; import { cva, type VariantProps } from 'class-variance-authority'; import type * as React from 'react'; const badgeVariants = cva( 'inline-flex items-center rounded-md border px-2.5 py-0.5 text-xs font-semibold transition-colors focus:outline-none focus:ring-2 focus:ring-ri...
portfolio
components/ui/badge.tsx
TypeScript
701b33487fbb3013c519af9a0eef8b8e85115265dfb1cac6a7f7cb4f7191496f
0
273
'use client'; import { useResponsive } from '@julian-at/components/ui/use-responsive'; import clsx from 'clsx'; import type React from 'react'; const DefaultIllustration = ( <svg aria-hidden="true" fill="none" focusable="false" height="56" viewBox="0 0 36 56" width="36" xmlns="http://www...
portfolio
components/ui/book.tsx
TypeScript
317ee01db044f52609e1f2e26c6773c92c14a96343499d7ba6d49c4cab69b2ee
0
896
simple' && color === undefined)) && 'bg-book-gradient' )} style={{ background: variant === 'simple' && color !== undefined ? _color : undefined, }} > <div className="...
portfolio
components/ui/book.tsx
TypeScript
634e8b3a8d33ff2569d41fb178593d5992b19fc858bc3d43169b897795ed5c31
1
542
import { cn } from '@julian-at/lib/utils'; import { Slot } from '@radix-ui/react-slot'; import { cva, type VariantProps } from 'class-variance-authority'; import * as React from 'react'; const buttonVariants = cva( 'inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transi...
portfolio
components/ui/button.tsx
TypeScript
01ba33229005801f1f3564dda71173b4f8d5d8c71dba82bdffe340d757ea5d24
0
493
import { cn } from '@julian-at/lib/utils'; import type { AnchorHTMLAttributes, ReactNode } from 'react'; type ExternalLinkProps = AnchorHTMLAttributes<HTMLAnchorElement> & { href: string; children: ReactNode; className?: string; }; export function ExternalLink({ href, children, className, ...props }: Ex...
portfolio
components/ui/external-link.tsx
TypeScript
12cb29aa2490067992dd3cbe4f8fcd5fd2b2655514c915b06a7f8619f1d03803
0
138
'use client'; import { cn } from '@julian-at/lib/utils'; import Image from 'next/image'; import { useState } from 'react'; type LogoImageProps = { src: string; alt: string; width: number; height: number; fallback: string; className?: string; variant?: 'default' | 'invert'; loading?: 'lazy' | 'eager'; ...
portfolio
components/ui/logo-image.tsx
TypeScript
5b85ce4a9573345e10a3070087b49c43cfd2fde4ffb52eb770ac897fa4539a36
0
342
import { cn } from '@julian-at/lib/utils'; export function Skeleton({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) { return ( <div className={cn('animate-pulse rounded-md bg-muted', className)} {...props} /> ); }
portfolio
components/ui/skeleton.tsx
TypeScript
b64247ed161d546c20b30ddc57fe993bb0405b90660732968e0161def46e127e
0
72
'use client'; import { useTheme } from 'next-themes'; import { Toaster as Sonner } from 'sonner'; type ToasterProps = React.ComponentProps<typeof Sonner>; const Toaster = ({ ...props }: ToasterProps) => { const { theme = 'system' } = useTheme(); return ( <Sonner theme={theme as ToasterProps['theme']} ...
portfolio
components/ui/sonner.tsx
TypeScript
de5a5d9ae404545fcb0f21123530ffcf89d24a47812c70b3ca1376591e28dbdd
0
235
'use client'; import { m } from 'motion/react'; import { memo, useMemo } from 'react'; type StaggeredTextProps = { text: string; className?: string; delay?: number; stagger?: number; }; const wordVariants = { hidden: { opacity: 0, y: -15, filter: 'blur(4px)', }, visible: { opacity: 1, ...
portfolio
components/ui/staggered-text.tsx
TypeScript
e6cc681c7a2504a71f697a7d5cd7d88c884b2ce67a3575a6f049e738dcc8c018
0
398
'use client'; import { cn } from '@julian-at/lib/utils'; import * as TabsPrimitive from '@radix-ui/react-tabs'; import * as React from 'react'; const Tabs = TabsPrimitive.Root; const TabsList = React.forwardRef< React.ElementRef<typeof TabsPrimitive.List>, React.ComponentPropsWithoutRef<typeof TabsPrimitive.List...
portfolio
components/ui/tabs.tsx
TypeScript
2e64fc05c0265841aa59dca3e7f5a011ca1e30c7280c495dbd51ccf1f05ec57d
0
488
'use client'; import { useCallback, useEffect, useMemo, useState } from 'react'; const BREAKPOINTS = { SM: 0, MD: 600, LG: 960, XL: 1200, } as const; type ResponsiveStyles<T> = { sm?: T; md?: T; lg?: T; xl?: T; }; function getResponsiveValue<T>( styles: ResponsiveStyles<T> | T, width: number ): ...
portfolio
components/ui/use-responsive.tsx
TypeScript
0f0d21e7c552b6e6ef3c1539d57579f84141b01f03748ac047ebf23f51982cd4
0
424
import { Section } from '@julian-at/components/section'; import { LogoImage } from '@julian-at/components/ui/logo-image'; import type { Client } from '@julian-at/lib/content-types'; import { env } from '@julian-at/lib/env'; import { cn } from '@julian-at/lib/utils'; import { ViewAnimation } from '@julian-at/providers/v...
portfolio
components/work/clients.tsx
TypeScript
76f492fad3046e371c84bfea8b163579b28fd2c9c29c9a561f7f72b8cd560a32
0
617
import { HeroSection } from '@julian-at/components/sections/hero'; import { SocialButton } from '@julian-at/components/social-button'; import { Button } from '@julian-at/components/ui/button'; import { social } from '@julian-at/lib/social'; import Link from 'next/link'; export const Hero = () => ( <HeroSection c...
portfolio
components/work/hero.tsx
TypeScript
cc9c2fe5de7de24ec9d96100aa77d03b9c34f5638b18ebb53f19f4fc4cb148de
0
184
'use client'; import ReactMarkdown from 'react-markdown'; import remarkGfm from 'remark-gfm'; type RoleDescriptionProps = { children: string; }; export function RoleDescription({ children }: RoleDescriptionProps) { return <ReactMarkdown remarkPlugins={[remarkGfm]}>{children}</ReactMarkdown>; }
portfolio
components/work/role-description.tsx
TypeScript
c26bb53c440c26c09043dc58dd79405728227fe073fc640f69279a65c5672731
0
64
import { Prose } from '@julian-at/components/prose'; import { Section } from '@julian-at/components/section'; import { LogoImage } from '@julian-at/components/ui/logo-image'; import type { Role } from '@julian-at/lib/content-types'; import { env } from '@julian-at/lib/env'; import { cn } from '@julian-at/lib/utils'; im...
portfolio
components/work/roles.tsx
TypeScript
46594381c26eb0e7c24e0f96b10b7b97bcb49281cee2728d36af5602354cff63
0
896
muted-foreground text-sm"> {role.type} &bull; {role.startDate} &mdash;{' '} {role.endDate ?? 'Present'} &bull; {role.location} </p> </div> </Link> </ViewAnimation> ); })} {roles.length % 2 ? ( <div classN...
portfolio
components/work/roles.tsx
TypeScript
ec545e2a06bb2b2aae7ceed06c7d7cd61f86ff348672d048088379abbe7cf5f7
1
110
import type { AboutPage } from './types'; export const aboutPage: AboutPage = { heroCaption: 'About', heroTitle: 'AI/ML Engineer building intelligent applications in 🇦🇹 Vienna, Austria', content: `I'm an AI/ML engineer based in Vienna, focused on AI, full-stack development, and product design. I work at th...
portfolio
content/about.ts
TypeScript
766a9b48235d7769b724939ad00668fb8af6c5ebde2c1c8790ca41c1a1b052c1
0
416
import type { Book } from '@julian-at/lib/content-types'; export const books: Book[] = [ { id: 19, title: 'Deep Work', author: 'Cal Newport', link: 'https://www.calnewport.com/books/deep-work/', image: 'https://covers.openlibrary.org/b/isbn/0349405697-M.jpg', status: 'backlog', sortOrder:...
portfolio
content/books.ts
TypeScript
cfbb76749d74720addb09a0b08326016ad2e8b0fa75d584bfabd10358039163a
0
896
.projekt-gutenberg.org/kafka/verwandl/chap001.html', image: 'https://covers.openlibrary.org/b/olid/OL7353616M-M.jpg', status: 'backlog', sortOrder: 9, }, { id: 6, title: 'The Pragmatic Programmer', author: 'David Thomas, Andrew Hunt', link: 'https://pragprog.com/titles/tpp20/the-pragmati...
portfolio
content/books.ts
TypeScript
7cdfe6252efe1c4728988ce6528280d32a2b2c181ee7f73a674de992083e1422
1
559
import type { Certificate } from '@julian-at/lib/content-types'; export const certificates: Certificate[] = [ { id: 3, title: 'Sicherheitsvertrauenspersonen', description: 'Austrian Safety Representative Certification - Qualified to oversee workplace safety standards and emergency protocols in corp...
portfolio
content/certificates.ts
TypeScript
097bd5729c791f21dfabb94c28aa7968726e8bd76c87e40f5adabc316b0c6347
0
250
import type { Client } from '@julian-at/lib/content-types'; export const clients: Client[] = [ { id: 9, name: 'Magna International', url: 'https://www.magna.com/', logo: null, sortOrder: 8, }, { id: 8, name: 'Stadt Wien', url: 'https://www.wien.gv.at/', logo: null, sortOrd...
portfolio
content/clients.ts
TypeScript
f0b77843c80a71ace4c153b33446a14bc2604759ef95368b7b6bc5d46c66ac85
0
388
import type { ContactPage } from './types'; export const contactPage: ContactPage = { heroCaption: 'Contact', heroTitle: "Let's work together on your next project. Get in touch with me.", heroDescription: 'Schedule a call to discuss how we can collaborate.', calComUsername: 'julian-at', calComEventSlugs: [ ...
portfolio
content/contact.ts
TypeScript
30d1d87dd97bba8dc31648289eb967dfa273d821477aebb9b771689594a568d4
0
85
import type { Hackathon } from '@julian-at/lib/content-types'; export const hackathons: Hackathon[] = [ { id: 9, name: 'MIT Hack-Nation', logo: null, rank: '1', time: '24:00:00', date: '07.02.2026', location: 'Vienna, Austria (weXelerate)', url: 'https://hack-nation.ai/', sortOrde...
portfolio
content/hackathons.ts
TypeScript
387963d560151d0903e67298aafdc53c9374d3baef227652181bed4e4204df42
0
677
import type { HomePage } from './types'; export const homePage: HomePage = { heroCaption: "Hi, I'm Julian", heroTitle: 'AI/ML Engineer building intelligent applications in 🇦🇹 Vienna, Austria', heroDescription: 'I build intelligent, user-centric systems at the intersection of AI, full-stack development,...
portfolio
content/home.ts
TypeScript
82a3dbbc1151eacebacb56b5927dbf312e290012c061cc82f89a5e20d439fb7d
0
123
export { aboutPage } from './about'; export { books } from './books'; export { certificates } from './certificates'; export { clients } from './clients'; export { contactPage } from './contact'; export { hackathons } from './hackathons'; export { homePage } from './home'; export { projects } from './projects'; export {...
portfolio
content/index.ts
TypeScript
363d11a00fb7663a42f03b7bcc9ff5538d982ce06d8ba5aedfda66a7f90fcf22
0
225
import type { Project } from '@julian-at/lib/content-types'; export const projects: Project[] = [ { id: 5, title: 'Healthcare Infrastructure Ghana', description: 'Agentic system built at Hack-Nation Global AI Hackathon (Vienna/weXelerate) with Abdul Basit Banbhan. Analyzes 987 facilities in Ghana t...
portfolio
content/projects.ts
TypeScript
5ff810f7c0af22e74511e0655bfe1415bf4a4c94f7e68345de429a3925d7186c
0
825
import type { Role } from '@julian-at/lib/content-types'; export const roles: Role[] = [ { id: 7, slug: 'asai-ai-ambassador', role: 'AI Ambassador', company: 'Austrian Society for Artificial Intelligence', title: 'Volunteering', description: 'Supporting [ASAI](https://www.asai.ac.at/) a...
portfolio
content/roles.ts
TypeScript
73a4a0a029247d8001bc1f3c90aabab4f76d520a7a54a6431bd822eeb0592625
0
896
workload. My work included debugging and optimizing operational scripts, improving the efficiency of internal reporting, and collaborating with other teams to align automation with business needs. The internship gave me practical experience in agile workflows and in delivering software used across departments.`, s...
portfolio
content/roles.ts
TypeScript
f54f1ddb0ad8132ccb663f470d6b32d7116f427f81cee012781c734c3ee7320a
1
896
Copilot and Amazon CodeWhisperer), the impact on developer productivity and code quality, and recommendations for responsible adoption while preserving quality and accountability.`, sortOrder: 3, }, { id: 1, slug: 'brz-artificial-intelligence-intern', role: 'Artificial Intelligence Intern', comp...
portfolio
content/roles.ts
TypeScript
73772102d73fb121330650bae557c743b2d0107191cdde0eb4a51c13079f7108
2
311
import type { SiteSettings } from './types'; export const siteSettings: SiteSettings = { siteName: 'Julian Schmidt', siteDescription: 'AI/ML Engineer', };
portfolio
content/site.ts
TypeScript
af79fef69a72efa452074c3973a905f21cfec5c7e849f50f03beae6d748dd63a
0
37
import type { Tool } from '@julian-at/lib/content-types'; export const tools: Tool[] = [ { id: 26, title: 'Behance', description: 'Showcase and discover creative work from designers and creatives worldwide', url: 'https://behance.net', category: 'Design', featured: true, sortOrder: ...
portfolio
content/tools.ts
TypeScript
206961353ab69395731cafa2ab2b2a6dd4e7851bac2e5d1ca80f6f436fa5e531
0
896
11, }, { id: 11, title: 'WebStorm', description: 'Sophisticated JavaScript IDE with full-stack development capabilities', url: 'https://www.jetbrains.com/webstorm/', category: 'Development', featured: true, sortOrder: 10, }, { id: 10, title: 'PyCharm Professional', ...
portfolio
content/tools.ts
TypeScript
10bff205b6835c74fe3f095a46525ec62eb83fbc9f264ae79d029e35347dfd4f
1
896
/huggingface.co', category: 'AI', featured: true, sortOrder: 27, }, { id: 31, title: 'Ollama', description: 'Run and manage open large language models locally', url: 'https://ollama.com', category: 'AI', featured: true, sortOrder: 28, }, { id: 32, title: 'Weights ...
portfolio
content/tools.ts
TypeScript
79939ef0e070756f88eb93b5d3ecae02ac58b820025746aba62af49bf9bf2ee5
2
296
export type AboutPage = { heroCaption: string; heroTitle: string; content: string; profileImage: { url: string; alt: string } | null; }; export type HomePage = { heroCaption: string; heroTitle: string; heroDescription: string; profileImage: { url: string; alt: string } | null; ctaLinks: { label: stri...
portfolio
content/types.ts
TypeScript
4cbbb5629ad7cdbe34ab86ce15b271dc201253551571e8262350161bdfad4927
0
128
export type Role = { id: number | string; slug: string; role: string; company: string; title: string; description: string; type: string; startDate: string; endDate: string | null; location: string; url: string | null; image?: { url: string; alt: string } | number | null; invertLogo?: boolean |...
portfolio
lib/content-types.ts
TypeScript
af9be0d0392d3740ea647897e684d614fe65ebbdab040b6077702161d4d92b70
0
452
import type { Book, Certificate, Client, Hackathon, Project, Role, Tool, } from '@julian-at/lib/content-types'; import { books, certificates, clients, globals, hackathons, projects, roles, tools, } from '../content'; export function getRoles(): Role[] { return [...roles].sort((a, b) => ...
portfolio
lib/data.ts
TypeScript
1e1d6236a780fd9b04a25f53970b025d5974fce36e4e9ad01c11da33398e38b1
0
487
import { createEnv } from '@t3-oss/env-nextjs'; import { z } from 'zod'; // @ts-ignore export const env = createEnv({ skipValidation: !!process.env.SKIP_ENV_VALIDATION, server: { BETTERSTACK_API_KEY: z.string().optional(), BETTERSTACK_URL: z.string().optional(), EDGE_CONFIG_ID: z.string().optional(), ...
portfolio
lib/env.ts
TypeScript
347c49c8ba6459736a27d9171966f0eae7d1cb9924e8b59577984d1fc218345c
0
286
import { Geist, Geist_Mono } from 'next/font/google'; export const fontSans = Geist({ subsets: ['latin'], variable: '--font-sans', display: 'swap', }); export const fontMono = Geist_Mono({ subsets: ['latin'], variable: '--font-mono', display: 'swap', });
portfolio
lib/fonts.ts
TypeScript
7c8e291f4b49b289326be60d4c8699e8e4d97165adafbdae7ef145e6b81bfa65
0
83
import { Octokit } from '@octokit/rest'; export const octokit = new Octokit({ auth: process.env.GITHUB_TOKEN ?? undefined, });
portfolio
lib/github.ts
TypeScript
373f2422a58d35d8bbaa3ae2dea08d3fdaac86218139ec91d9650f8e88757003
0
34
export const navigation = [ { href: '/', label: 'Home' }, { href: '/about', label: 'About' }, { href: '/work', label: 'Work' }, { href: '/projects', label: 'Projects' }, { href: '/stack', label: 'Stack' }, { href: '/contact', label: 'Contact' }, ];
portfolio
lib/navigation.ts
TypeScript
33741a12db3745c6df91f24a9f7373ff1a361da1e3fbc5a7bfd4e1a70500980a
0
96
export type SpotifyTrack = { name: string; artist: string; image: string; href: string; }; export const spotifyNowKey = '/api/spotify/now'; export async function fetchSpotifyNow( url: string ): Promise<SpotifyTrack | null> { const res = await fetch(url); if (res.status === 204) { return null; } ...
portfolio
lib/spotify-now.ts
TypeScript
56a2497f71ebcbcd8754af05624a2d6f236080fe269f421ce50095dd4f7ea179
0
134
import { env } from '@julian-at/lib/env'; import ky from 'ky'; export type SpotifyTrack = { name: string; artist: string; image: string; href: string; }; type SpotifyPlayingResponse = { item: { name: string; external_urls: { spotify: string }; album: { images: { url: string }[] }; artists: {...
portfolio
lib/spotify.ts
TypeScript
c05d7679e8437bb678f64c5b360243feb37e1be368b59a8b3ea08eeed71e37d7
0
437
import tailwindConfig from '@julian-at/tailwind.config'; import resolveConfig from 'tailwindcss/resolveConfig'; const tailwind = resolveConfig(tailwindConfig); export default tailwind;
portfolio
lib/tailwind.ts
TypeScript
c667b4b1625214e06821e5b84ed890aa6a4dd5be5d61e0318552b6f0df218535
0
35
import { type ClassValue, clsx } from 'clsx'; import { toast } from 'sonner'; import { twMerge } from 'tailwind-merge'; export const cn = (...inputs: ClassValue[]): string => twMerge(clsx(inputs)); export const profileAvatarImageClass = 'h-full w-full object-cover object-[57%_50%]'; export const parseError = (erro...
portfolio
lib/utils.ts
TypeScript
8757be58b2c9c56627e816d593f7684b6ca612d73a1f76a62b70847210a2dc2b
0
164
import { env } from '@julian-at/lib/env'; export const updateEdgeConfig = async ( key: string, value: number | object | string ): Promise<void> => { const endpoint = new URL( `/v1/edge-config/${env.EDGE_CONFIG_ID}/items`, 'https://api.vercel.com' ); const response = await fetch(endpoint, { metho...
portfolio
lib/vercel.ts
TypeScript
9420041a390d115b0885bfb8e2a6aeb4e61286820da7d3da6abbd2ecbc36e845
0
201
import GitHub from '@julian-at/lib/social/github.svg'; import LinkedIn from '@julian-at/lib/social/linkedin.svg'; export const social = { github: { label: 'GitHub', href: 'https://github.com/julian-at', icon: GitHub, }, linkedin: { label: 'LinkedIn', href: 'https://www.linkedin.com/in/julian-...
portfolio
lib/social/index.ts
TypeScript
94c0c35102839f65d8484da7297efba5f01cc88266503a76e19f36b112ede144
0
109
'use client'; import { cn } from '@julian-at/lib/utils'; import { type HTMLAttributes, useEffect, useState } from 'react'; type HeaderProviderProps = HTMLAttributes<HTMLDivElement>; export const HeaderProvider = ({ children, className, }: HeaderProviderProps) => { const [isScrolled, setIsScrolled] = useState(f...
portfolio
providers/header.tsx
TypeScript
9026ddddf8cfa1743f79e483cc9260ba76b480fb3d5626ca32facf78fd6d2a4f
0
176