Skip to content

Commit 0f9df90

Browse files
noahhonoahho
authored andcommitted
Overwrite
1 parent 5d10826 commit 0f9df90

File tree

85 files changed

+431
-550
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+431
-550
lines changed
File renamed without changes.
File renamed without changes.

mkdocs.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ repo_url: https://github.com/PriorLabs/TabPFN
33

44
theme:
55
name: material
6-
logo: https://media.licdn.com/dms/image/v2/D4E0BAQHev7AyMsgYEQ/company-logo_100_100/company-logo_100_100/0/1736270278418/prior_labs_logo?e=1744243200&v=beta&t=vIMQDdZiVBKuBIsdZVUhnWS_S7XGXzELlN1LeNfSRSM
6+
#logo: assets/logo.png
7+
favicon: assets/logo.png
78

89
features:
910
- announce.dismiss

overrides/partials/header.html

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@
1414

1515
<header class="{{ class }}" data-md-component="header">
1616
<nav class="md-header__inner md-grid" aria-label="{{ lang.t('header') }}">
17-
<a href="{{ config.extra.homepage | d(nav.homepage.url, true) | url }}" title="{{ config.site_name | e }}" class="md-header__button md-logo" aria-label="{{ config.site_name }}" data-md-component="logo">
18-
{% include "partials/logo.html" %}
19-
</a>
2017
<label class="md-header__button md-icon" for="__drawer">
2118
{% set icon = config.theme.icon.menu or "material/menu" %}
2219
{% include ".icons/" ~ icon ~ ".svg" %}

site/404.html

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212

1313

14-
<link rel="icon" href="/assets/images/favicon.png">
14+
<link rel="icon" href="/assets/logo.png">
1515
<meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.5.10">
1616

1717

@@ -96,11 +96,6 @@
9696

9797
<header class="md-header md-header--shadow" data-md-component="header">
9898
<nav class="md-header__inner md-grid" aria-label="Header">
99-
<a href="/." title="Prior Labs" class="md-header__button md-logo" aria-label="Prior Labs" data-md-component="logo">
100-
101-
<img src="https://media.licdn.com/dms/image/v2/D4E0BAQHev7AyMsgYEQ/company-logo_100_100/company-logo_100_100/0/1736270278418/prior_labs_logo?e=1744243200&v=beta&t=vIMQDdZiVBKuBIsdZVUhnWS_S7XGXzELlN1LeNfSRSM" alt="logo">
102-
103-
</a>
10499
<label class="md-header__button md-icon" for="__drawer">
105100

106101
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18v2H3V6m0 5h18v2H3v-2m0 5h18v2H3v-2Z"/></svg>
@@ -239,7 +234,8 @@
239234
<label class="md-nav__title" for="__drawer">
240235
<a href="/." title="Prior Labs" class="md-nav__button md-logo" aria-label="Prior Labs" data-md-component="logo">
241236

242-
<img src="https://media.licdn.com/dms/image/v2/D4E0BAQHev7AyMsgYEQ/company-logo_100_100/company-logo_100_100/0/1736270278418/prior_labs_logo?e=1744243200&v=beta&t=vIMQDdZiVBKuBIsdZVUhnWS_S7XGXzELlN1LeNfSRSM" alt="logo">
237+
238+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a3 3 0 0 0 3-3 3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3m0 3.54C9.64 9.35 6.5 8 3 8v11c3.5 0 6.64 1.35 9 3.54 2.36-2.19 5.5-3.54 9-3.54V8c-3.5 0-6.64 1.35-9 3.54Z"/></svg>
243239

244240
</a>
245241
Prior Labs

site/assets/index.html

Lines changed: 195 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,195 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
6+
<title>Prior Labs - Foundation Models for Tabular Data</title>
7+
<script src="https://cdn.tailwindcss.com"></script>
8+
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Source+Sans+Pro:wght@300;400;600;700&display=swap" rel="stylesheet">
9+
<style>
10+
body {
11+
font-family: 'Source Sans Pro', sans-serif;
12+
}
13+
14+
h1, h2, h3, h4, h5, h6 {
15+
font-family: 'Space Grotesk', sans-serif;
16+
}
17+
18+
@keyframes hoverEffect {
19+
0% { transform: scale(1) rotate(0deg); }
20+
50% { transform: scale(1.1) rotate(2deg); }
21+
100% { transform: scale(1.1) rotate(0deg); }
22+
}
23+
24+
@keyframes floatAnimation {
25+
0% { transform: translateY(0); }
26+
50% { transform: translateY(-10px); }
27+
100% { transform: translateY(0); }
28+
}
29+
30+
.pixel {
31+
width: 20px;
32+
height: 20px;
33+
background-color: #0f172a;
34+
opacity: 0.3;
35+
cursor: pointer;
36+
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
37+
}
38+
39+
.pixel:hover {
40+
background-color: #3b82f6;
41+
opacity: 0.8;
42+
animation: hoverEffect 0.6s cubic-bezier(0.4, 0, 0.2, 1);
43+
}
44+
45+
.fade-in {
46+
opacity: 0;
47+
transform: translateY(30px);
48+
transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
49+
}
50+
51+
.fade-in.visible {
52+
opacity: 1;
53+
transform: translateY(0);
54+
}
55+
56+
.gradient-text {
57+
background: linear-gradient(135deg, #FFF, #DDD);
58+
-webkit-background-clip: text;
59+
-webkit-text-fill-color: transparent;
60+
}
61+
62+
.card-hover {
63+
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
64+
animation: floatAnimation 6s ease-in-out infinite;
65+
}
66+
67+
.card-hover:hover {
68+
transform: translateY(-10px) scale(1.02);
69+
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
70+
}
71+
</style>
72+
</head>
73+
<body class="font-sans bg-slate-900">
74+
<!-- Hero Section -->
75+
<section id="hero" class="relative text-white min-h-screen flex items-center justify-center bg-gradient-to-r from-slate-900 via-blue-900 to-slate-900">
76+
<div id="pixelGrid" class="absolute inset-0 grid grid-cols-[repeat(auto-fill,20px)] gap-1 opacity-30"></div>
77+
78+
<div class="relative z-10 text-center px-4 max-w-4xl mx-auto">
79+
<h1 class="text-6xl font-bold mb-8 leading-tight tracking-tight">
80+
The next generation </br>
81+
of Data Science
82+
</h1>
83+
<p class="text-2xl mb-12 text-blue-100 font-light">
84+
Building foundation models that understand tabular data — bringing next-generation AI capabilities to the world's most valuable data format
85+
</p>
86+
<div class="flex justify-center gap-6">
87+
<a href="https://priorlabs.ai/docs/" class="bg-blue-500 text-white px-8 py-3 rounded-lg font-semibold hover:bg-blue-400 transition-all duration-300 transform hover:scale-105">
88+
Try Our API
89+
</a>
90+
<a href="https://www.nature.com/articles/s41586-024-08328-6" class="border-2 border-blue-400 px-8 py-3 rounded-lg font-semibold hover:bg-blue-400/10 transition-all duration-300 transform hover:scale-105">
91+
Read in Nature
92+
</a>
93+
</div>
94+
</div>
95+
</section>
96+
97+
<!-- Evolution Section -->
98+
<section id="evolution" class="py-32 bg-slate-800 fade-in">
99+
<div class="max-w-5xl mx-auto px-4">
100+
<div class="text-center mb-16">
101+
<h2 class="text-4xl font-bold mb-6 gradient-text">
102+
AI Has Already Transformed Text and Images.<br/>
103+
Now It's Time for Tables.
104+
</h2>
105+
<p class="text-xl text-slate-300 max-w-3xl mx-auto">
106+
Foundation models revolutionized how we work with text and images.
107+
Yet the format containing our most valuable data — tables — has been left behind.
108+
</p>
109+
</div>
110+
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
111+
<div class="bg-slate-700/50 p-8 rounded-xl card-hover backdrop-blur-sm">
112+
<h3 class="text-2xl font-semibold mb-4 text-white">Text</h3>
113+
<p class="text-slate-300">ChatGPT, Claude, and others transformed text interaction</p>
114+
</div>
115+
<div class="bg-slate-700/50 p-8 rounded-xl card-hover backdrop-blur-sm">
116+
<h3 class="text-2xl font-semibold mb-4 text-white">Images</h3>
117+
<p class="text-slate-300">Midjourney, DALL·E and Stability revolutionized image creation</p>
118+
</div>
119+
<div class="bg-blue-900/50 p-8 rounded-xl card-hover backdrop-blur-sm border-2 border-blue-400/30">
120+
<h3 class="text-2xl font-semibold mb-4 text-blue-200">Tables</h3>
121+
<p class="text-slate-300">Prior Labs brings the same revolution to tabular data</p>
122+
</div>
123+
</div>
124+
</div>
125+
</section>
126+
127+
<!-- Impact Section -->
128+
<section id="impact" class="py-48 fade-in relative text-white">
129+
<div class="absolute inset-0 bg-gradient-to-r from-slate-900 via-blue-900 to-slate-900 opacity-95"></div>
130+
<div class="relative z-10 max-w-5xl mx-auto px-4">
131+
<div class="text-left mb-16">
132+
<h2 class="text-4xl font-bold mb-6">
133+
The questions we ask of the data in our databases and spreadsheets are limited by the capabilities we have to analyze them. </br>
134+
</br>
135+
What questions would we ask if AI had an intuitive understanding of these tables?
136+
</h2>
137+
</div>
138+
</div>
139+
</section>
140+
141+
<!-- Call to Action -->
142+
<section id="cta" class="py-32 bg-slate-800 fade-in">
143+
<div class="max-w-5xl mx-auto px-4 text-center">
144+
<h2 class="text-4xl font-bold mb-8 gradient-text">
145+
Join Us in Transforming Data Science
146+
</h2>
147+
<p class="text-xl text-slate-300 max-w-3xl mx-auto mb-12">
148+
Our goal is to help people make better decisions by changing how we interact with tabular data. We're laying the foundation for a future where our data reveals its full story, helping breakthroughs across healthcare, science, and business. Help us shape the future of data analysis.
149+
</p>
150+
<div class="flex justify-center gap-6">
151+
<a href="https://priorlabs.ai/docs/" class="bg-blue-500 text-white px-8 py-3 rounded-lg font-semibold hover:bg-blue-400 transition-all duration-300 transform hover:scale-105">
152+
Get Started
153+
</a>
154+
<a href="https://priorlabs.notion.site/Prior-Labs-Join-us-14b5be1f3b4980f68281c7eae947f91c" class="border-2 border-blue-400 text-blue-200 px-8 py-3 rounded-lg font-semibold hover:bg-blue-400/10 transition-all duration-300 transform hover:scale-105">
155+
Join Our Team
156+
</a>
157+
</div>
158+
</div>
159+
</section>
160+
161+
<script>
162+
// Create pixel grid
163+
const pixelGrid = document.getElementById('pixelGrid');
164+
const cols = Math.ceil(window.innerWidth / 20);
165+
const rows = Math.ceil(window.innerHeight / 20);
166+
167+
for (let i = 0; i < rows * cols; i++) {
168+
const pixel = document.createElement('div');
169+
pixel.className = 'pixel';
170+
pixel.style.animationDelay = `${Math.random() * 2}s`;
171+
pixelGrid.appendChild(pixel);
172+
}
173+
174+
// Enhanced Intersection Observer for fade-in effects
175+
const fadeInElements = document.querySelectorAll('.fade-in');
176+
const observer = new IntersectionObserver(
177+
entries => {
178+
entries.forEach(entry => {
179+
if (entry.isIntersecting) {
180+
entry.target.classList.add('visible');
181+
// Remove observer after animation
182+
observer.unobserve(entry.target);
183+
}
184+
});
185+
},
186+
{
187+
threshold: 0.1,
188+
rootMargin: '50px'
189+
}
190+
);
191+
192+
fadeInElements.forEach(el => observer.observe(el));
193+
</script>
194+
</body>
195+
</html>

site/assets/logo.png

8.68 KB
Loading

site/aup/index.html

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212

1313

14-
<link rel="icon" href="../assets/images/favicon.png">
14+
<link rel="icon" href="../assets/logo.png">
1515
<meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.5.10">
1616

1717

@@ -101,11 +101,6 @@
101101

102102
<header class="md-header md-header--shadow" data-md-component="header">
103103
<nav class="md-header__inner md-grid" aria-label="Header">
104-
<a href=".." title="Prior Labs" class="md-header__button md-logo" aria-label="Prior Labs" data-md-component="logo">
105-
106-
<img src="https://media.licdn.com/dms/image/v2/D4E0BAQHev7AyMsgYEQ/company-logo_100_100/company-logo_100_100/0/1736270278418/prior_labs_logo?e=1744243200&v=beta&t=vIMQDdZiVBKuBIsdZVUhnWS_S7XGXzELlN1LeNfSRSM" alt="logo">
107-
108-
</a>
109104
<label class="md-header__button md-icon" for="__drawer">
110105

111106
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18v2H3V6m0 5h18v2H3v-2m0 5h18v2H3v-2Z"/></svg>
@@ -244,7 +239,8 @@
244239
<label class="md-nav__title" for="__drawer">
245240
<a href=".." title="Prior Labs" class="md-nav__button md-logo" aria-label="Prior Labs" data-md-component="logo">
246241

247-
<img src="https://media.licdn.com/dms/image/v2/D4E0BAQHev7AyMsgYEQ/company-logo_100_100/company-logo_100_100/0/1736270278418/prior_labs_logo?e=1744243200&v=beta&t=vIMQDdZiVBKuBIsdZVUhnWS_S7XGXzELlN1LeNfSRSM" alt="logo">
242+
243+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a3 3 0 0 0 3-3 3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3m0 3.54C9.64 9.35 6.5 8 3 8v11c3.5 0 6.64 1.35 9 3.54 2.36-2.19 5.5-3.54 9-3.54V8c-3.5 0-6.64 1.35-9 3.54Z"/></svg>
248244

249245
</a>
250246
Prior Labs

site/cla/index.html

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212

1313

14-
<link rel="icon" href="../assets/images/favicon.png">
14+
<link rel="icon" href="../assets/logo.png">
1515
<meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.5.10">
1616

1717

@@ -101,11 +101,6 @@
101101

102102
<header class="md-header md-header--shadow" data-md-component="header">
103103
<nav class="md-header__inner md-grid" aria-label="Header">
104-
<a href=".." title="Prior Labs" class="md-header__button md-logo" aria-label="Prior Labs" data-md-component="logo">
105-
106-
<img src="https://media.licdn.com/dms/image/v2/D4E0BAQHev7AyMsgYEQ/company-logo_100_100/company-logo_100_100/0/1736270278418/prior_labs_logo?e=1744243200&v=beta&t=vIMQDdZiVBKuBIsdZVUhnWS_S7XGXzELlN1LeNfSRSM" alt="logo">
107-
108-
</a>
109104
<label class="md-header__button md-icon" for="__drawer">
110105

111106
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18v2H3V6m0 5h18v2H3v-2m0 5h18v2H3v-2Z"/></svg>
@@ -244,7 +239,8 @@
244239
<label class="md-nav__title" for="__drawer">
245240
<a href=".." title="Prior Labs" class="md-nav__button md-logo" aria-label="Prior Labs" data-md-component="logo">
246241

247-
<img src="https://media.licdn.com/dms/image/v2/D4E0BAQHev7AyMsgYEQ/company-logo_100_100/company-logo_100_100/0/1736270278418/prior_labs_logo?e=1744243200&v=beta&t=vIMQDdZiVBKuBIsdZVUhnWS_S7XGXzELlN1LeNfSRSM" alt="logo">
242+
243+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a3 3 0 0 0 3-3 3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3m0 3.54C9.64 9.35 6.5 8 3 8v11c3.5 0 6.64 1.35 9 3.54 2.36-2.19 5.5-3.54 9-3.54V8c-3.5 0-6.64 1.35-9 3.54Z"/></svg>
248244

249245
</a>
250246
Prior Labs

site/contribute/index.html

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212

1313

14-
<link rel="icon" href="../assets/images/favicon.png">
14+
<link rel="icon" href="../assets/logo.png">
1515
<meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.5.10">
1616

1717

@@ -101,11 +101,6 @@
101101

102102
<header class="md-header md-header--shadow" data-md-component="header">
103103
<nav class="md-header__inner md-grid" aria-label="Header">
104-
<a href=".." title="Prior Labs" class="md-header__button md-logo" aria-label="Prior Labs" data-md-component="logo">
105-
106-
<img src="https://media.licdn.com/dms/image/v2/D4E0BAQHev7AyMsgYEQ/company-logo_100_100/company-logo_100_100/0/1736270278418/prior_labs_logo?e=1744243200&v=beta&t=vIMQDdZiVBKuBIsdZVUhnWS_S7XGXzELlN1LeNfSRSM" alt="logo">
107-
108-
</a>
109104
<label class="md-header__button md-icon" for="__drawer">
110105

111106
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18v2H3V6m0 5h18v2H3v-2m0 5h18v2H3v-2Z"/></svg>
@@ -244,7 +239,8 @@
244239
<label class="md-nav__title" for="__drawer">
245240
<a href=".." title="Prior Labs" class="md-nav__button md-logo" aria-label="Prior Labs" data-md-component="logo">
246241

247-
<img src="https://media.licdn.com/dms/image/v2/D4E0BAQHev7AyMsgYEQ/company-logo_100_100/company-logo_100_100/0/1736270278418/prior_labs_logo?e=1744243200&v=beta&t=vIMQDdZiVBKuBIsdZVUhnWS_S7XGXzELlN1LeNfSRSM" alt="logo">
242+
243+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a3 3 0 0 0 3-3 3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3m0 3.54C9.64 9.35 6.5 8 3 8v11c3.5 0 6.64 1.35 9 3.54 2.36-2.19 5.5-3.54 9-3.54V8c-3.5 0-6.64 1.35-9 3.54Z"/></svg>
248244

249245
</a>
250246
Prior Labs

0 commit comments

Comments
 (0)