@tanstack/cta-framework-react-cra 0.44.3 → 0.46.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/{examples/tanchat/assets/src/components/example-AIAssistant.tsx → add-ons/ai/assets/src/components/demo-AIAssistant.tsx} +6 -8
- package/{examples/tanchat/assets/src/components/example-GuitarRecommendation.tsx → add-ons/ai/assets/src/components/demo-GuitarRecommendation.tsx} +2 -2
- package/{examples/tanchat/assets/src/lib/example.ai-hook.ts → add-ons/ai/assets/src/lib/demo-ai-hook.ts} +9 -9
- package/{examples/tanchat/assets/src/lib/example.guitar-tools.ts → add-ons/ai/assets/src/lib/demo-guitar-tools.ts} +1 -1
- package/{examples/tanchat/assets/src/routes/demo/tanchat.tsx → add-ons/ai/assets/src/routes/demo/ai-chat.tsx} +30 -150
- package/{examples/tanchat/assets/src/routes/demo/image.tsx → add-ons/ai/assets/src/routes/demo/ai-image.tsx} +2 -50
- package/add-ons/ai/assets/src/routes/demo/ai-structured.tsx +310 -0
- package/{examples/tanchat/assets/src/routes/demo/api.tanchat.ts → add-ons/ai/assets/src/routes/demo/api.ai.chat.ts} +16 -6
- package/{examples/tanchat/assets/src/routes/demo/api.image.ts → add-ons/ai/assets/src/routes/demo/api.ai.image.ts} +3 -5
- package/add-ons/ai/assets/src/routes/demo/api.ai.structured.ts +136 -0
- package/add-ons/ai/assets/src/routes/demo/api.ai.transcription.ts +89 -0
- package/{examples/tanchat/assets/src/routes/demo/api.tts.ts → add-ons/ai/assets/src/routes/demo/api.ai.tts.ts} +1 -1
- package/{examples/tanchat/assets/src/routes/example.guitars → add-ons/ai/assets/src/routes/demo/guitars}/$guitarId.tsx +3 -2
- package/{examples/tanchat/assets/src/routes/example.guitars → add-ons/ai/assets/src/routes/demo/guitars}/index.tsx +3 -2
- package/add-ons/ai/info.json +46 -0
- package/{examples/tanchat → add-ons/ai}/package.json +1 -1
- package/examples/events/README.md +110 -0
- package/examples/events/assets/content/speakers/andre-costa.md +22 -0
- package/examples/events/assets/content/speakers/hans-mueller.md +22 -0
- package/examples/events/assets/content/speakers/isabella-martinez.md +22 -0
- package/examples/events/assets/content/speakers/kenji-nakamura.md +22 -0
- package/examples/events/assets/content/speakers/marie-dubois.md +20 -0
- package/examples/events/assets/content/speakers/priya-sharma.md +22 -0
- package/examples/events/assets/content/talks/croissant-lamination-secrets.md +39 -0
- package/examples/events/assets/content/talks/french-macaron-mastery.md +39 -0
- package/examples/events/assets/content/talks/neapolitan-pizza-tradition-meets-innovation.md +39 -0
- package/examples/events/assets/content/talks/savory-breads-of-the-mediterranean.md +39 -0
- package/examples/events/assets/content/talks/sourdough-from-starter-to-masterpiece.md +36 -0
- package/examples/events/assets/content/talks/the-art-of-the-perfect-tart.md +32 -0
- package/examples/events/assets/content/talks/the-science-of-sugar.md +39 -0
- package/examples/events/assets/content/talks/umami-in-pastry-east-meets-west.md +39 -0
- package/examples/events/assets/content-collections.ts +56 -0
- package/examples/events/assets/public/background-1.jpg +0 -0
- package/examples/events/assets/public/background-2.jpg +0 -0
- package/examples/events/assets/public/background-3.jpg +0 -0
- package/examples/events/assets/public/background-4.jpg +0 -0
- package/examples/events/assets/public/conference-logo.png +0 -0
- package/examples/events/assets/public/favicon.ico +0 -0
- package/examples/events/assets/public/speakers/andre-costa.jpg +0 -0
- package/examples/events/assets/public/speakers/hans-mueller.jpg +0 -0
- package/examples/events/assets/public/speakers/isabella-martinez.jpg +0 -0
- package/examples/events/assets/public/speakers/kenji-nakamura.jpg +0 -0
- package/examples/events/assets/public/speakers/marie-dubois.jpg +0 -0
- package/examples/events/assets/public/speakers/priya-sharma.jpg +0 -0
- package/examples/events/assets/public/talks/croissant-lamination-secrets.jpg +0 -0
- package/examples/events/assets/public/talks/french-macaron-mastery.jpg +0 -0
- package/examples/events/assets/public/talks/neapolitan-pizza-tradition-meets-innovation.jpg +0 -0
- package/examples/events/assets/public/talks/savory-breads-of-the-mediterranean.jpg +0 -0
- package/examples/events/assets/public/talks/sourdough-from-starter-to-masterpiece.jpg +0 -0
- package/examples/events/assets/public/talks/the-art-of-the-perfect-tart.jpg +0 -0
- package/examples/events/assets/public/talks/the-science-of-sugar.jpg +0 -0
- package/examples/events/assets/public/talks/umami-in-pastry-east-meets-west.jpg +0 -0
- package/examples/events/assets/public/tanstack-circle-logo.png +0 -0
- package/examples/events/assets/public/tanstack-word-logo-white.svg +1 -0
- package/examples/events/assets/src/components/HeroCarousel.tsx +61 -0
- package/examples/events/assets/src/components/RemyAssistant.tsx +207 -0
- package/examples/events/assets/src/components/RemyButton.tsx +18 -0
- package/examples/events/assets/src/components/SpeakerCard.tsx +67 -0
- package/examples/events/assets/src/components/TalkCard.tsx +77 -0
- package/examples/events/assets/src/components/ui/card.tsx +92 -0
- package/examples/events/assets/src/lib/conference-ai-hook.ts +26 -0
- package/examples/events/assets/src/lib/conference-tools.ts +210 -0
- package/examples/events/assets/src/lib/utils.ts +6 -0
- package/examples/events/assets/src/routes/api.remy-chat.ts +121 -0
- package/examples/events/assets/src/routes/index.tsx +192 -0
- package/examples/events/assets/src/routes/schedule.index.tsx +274 -0
- package/examples/events/assets/src/routes/speakers.$slug.tsx +122 -0
- package/examples/events/assets/src/routes/speakers.index.tsx +40 -0
- package/examples/events/assets/src/routes/talks.$slug.tsx +116 -0
- package/examples/events/assets/src/routes/talks.index.tsx +40 -0
- package/examples/events/assets/src/styles.css +194 -0
- package/examples/events/info.json +63 -0
- package/examples/events/package.json +23 -0
- package/examples/resume/README.md +82 -0
- package/examples/resume/assets/content/education/code-school.md +17 -0
- package/examples/resume/assets/content/jobs/freelance.md +13 -0
- package/examples/resume/assets/content/jobs/initech-junior.md +20 -0
- package/examples/resume/assets/content/jobs/initech-lead.md +29 -0
- package/examples/resume/assets/content/jobs/initrode-senior.md +28 -0
- package/examples/resume/assets/content-collections.ts +36 -0
- package/examples/resume/assets/public/headshot-on-white.jpg +0 -0
- package/examples/resume/assets/src/components/ResumeAssistant.tsx +193 -0
- package/examples/resume/assets/src/components/ResumeAssistantButton.tsx +20 -0
- package/examples/resume/assets/src/components/ui/badge.tsx +46 -0
- package/examples/resume/assets/src/components/ui/card.tsx +92 -0
- package/examples/resume/assets/src/components/ui/checkbox.tsx +30 -0
- package/examples/resume/assets/src/components/ui/hover-card.tsx +44 -0
- package/examples/resume/assets/src/components/ui/separator.tsx +26 -0
- package/examples/resume/assets/src/lib/resume-ai-hook.ts +21 -0
- package/examples/resume/assets/src/lib/resume-tools.ts +165 -0
- package/examples/resume/assets/src/lib/utils.ts +6 -0
- package/examples/resume/assets/src/routes/api.resume-chat.ts +110 -0
- package/examples/resume/assets/src/routes/index.tsx +220 -0
- package/examples/resume/assets/src/styles.css +138 -0
- package/examples/resume/info.json +30 -0
- package/examples/resume/package.json +27 -0
- package/package.json +2 -2
- package/examples/tanchat/assets/src/lib/model-selection.ts +0 -78
- package/examples/tanchat/assets/src/lib/vendor-capabilities.ts +0 -55
- package/examples/tanchat/assets/src/routes/demo/api.available-providers.ts +0 -35
- package/examples/tanchat/assets/src/routes/demo/api.structured.ts +0 -168
- package/examples/tanchat/assets/src/routes/demo/api.transcription.ts +0 -89
- package/examples/tanchat/assets/src/routes/demo/structured.tsx +0 -460
- package/examples/tanchat/info.json +0 -46
- /package/{examples/tanchat → add-ons/ai}/README.md +0 -0
- /package/{examples/tanchat → add-ons/ai}/assets/_dot_env.local.append +0 -0
- /package/{examples/tanchat → add-ons/ai}/assets/public/example-guitar-flowers.jpg +0 -0
- /package/{examples/tanchat → add-ons/ai}/assets/public/example-guitar-motherboard.jpg +0 -0
- /package/{examples/tanchat → add-ons/ai}/assets/public/example-guitar-racing.jpg +0 -0
- /package/{examples/tanchat → add-ons/ai}/assets/public/example-guitar-steamer-trunk.jpg +0 -0
- /package/{examples/tanchat → add-ons/ai}/assets/public/example-guitar-superhero.jpg +0 -0
- /package/{examples/tanchat → add-ons/ai}/assets/public/example-guitar-traveling.jpg +0 -0
- /package/{examples/tanchat → add-ons/ai}/assets/public/example-guitar-video-games.jpg +0 -0
- /package/{examples/tanchat → add-ons/ai}/assets/public/example-ukelele-tanstack.jpg +0 -0
- /package/{examples/tanchat/assets/src/data/example-guitars.ts → add-ons/ai/assets/src/data/demo-guitars.ts} +0 -0
- /package/{examples/tanchat/assets/src/hooks/useAudioRecorder.ts → add-ons/ai/assets/src/hooks/demo-useAudioRecorder.ts} +0 -0
- /package/{examples/tanchat/assets/src/hooks/useTTS.ts → add-ons/ai/assets/src/hooks/demo-useTTS.ts} +0 -0
- /package/{examples/tanchat → add-ons/ai}/assets/src/lib/ai-devtools.tsx +0 -0
- /package/{examples/tanchat/assets/src/routes/demo/tanchat.css → add-ons/ai/assets/src/routes/demo/ai-chat.css} +0 -0
- /package/{examples/tanchat → add-ons/ai}/small-logo.svg +0 -0
|
@@ -0,0 +1,194 @@
|
|
|
1
|
+
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&display=swap');
|
|
2
|
+
@import 'tailwindcss';
|
|
3
|
+
|
|
4
|
+
@plugin "tailwindcss-animate";
|
|
5
|
+
|
|
6
|
+
@custom-variant dark (&:is(.dark *));
|
|
7
|
+
|
|
8
|
+
body {
|
|
9
|
+
@apply m-0;
|
|
10
|
+
font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
|
|
11
|
+
-webkit-font-smoothing: antialiased;
|
|
12
|
+
-moz-osx-font-smoothing: grayscale;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
code {
|
|
16
|
+
font-family:
|
|
17
|
+
source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
/* Haute Patisserie Dark Theme */
|
|
21
|
+
:root {
|
|
22
|
+
/* Core colors - Dark elegant bakery */
|
|
23
|
+
--background: oklch(0.13 0.01 60);
|
|
24
|
+
--foreground: oklch(0.93 0.02 85);
|
|
25
|
+
|
|
26
|
+
/* Warm cream for cards */
|
|
27
|
+
--card: oklch(0.17 0.015 55);
|
|
28
|
+
--card-foreground: oklch(0.93 0.02 85);
|
|
29
|
+
|
|
30
|
+
/* Copper accent */
|
|
31
|
+
--primary: oklch(0.65 0.14 55);
|
|
32
|
+
--primary-foreground: oklch(0.13 0.01 60);
|
|
33
|
+
|
|
34
|
+
/* Antique gold */
|
|
35
|
+
--secondary: oklch(0.72 0.12 85);
|
|
36
|
+
--secondary-foreground: oklch(0.13 0.01 60);
|
|
37
|
+
|
|
38
|
+
/* Muted warm tones */
|
|
39
|
+
--muted: oklch(0.22 0.02 55);
|
|
40
|
+
--muted-foreground: oklch(0.65 0.03 85);
|
|
41
|
+
|
|
42
|
+
/* Accent - rich copper */
|
|
43
|
+
--accent: oklch(0.55 0.15 45);
|
|
44
|
+
--accent-foreground: oklch(0.95 0.02 85);
|
|
45
|
+
|
|
46
|
+
/* Destructive */
|
|
47
|
+
--destructive: oklch(0.55 0.2 25);
|
|
48
|
+
--destructive-foreground: oklch(0.95 0.02 85);
|
|
49
|
+
|
|
50
|
+
/* Borders and inputs */
|
|
51
|
+
--border: oklch(0.28 0.03 55);
|
|
52
|
+
--input: oklch(0.22 0.02 55);
|
|
53
|
+
--ring: oklch(0.65 0.14 55);
|
|
54
|
+
|
|
55
|
+
/* Chart colors - pastry inspired */
|
|
56
|
+
--chart-1: oklch(0.65 0.14 55);
|
|
57
|
+
--chart-2: oklch(0.72 0.12 85);
|
|
58
|
+
--chart-3: oklch(0.55 0.15 45);
|
|
59
|
+
--chart-4: oklch(0.6 0.1 30);
|
|
60
|
+
--chart-5: oklch(0.5 0.08 150);
|
|
61
|
+
|
|
62
|
+
--radius: 0.625rem;
|
|
63
|
+
|
|
64
|
+
/* Popover */
|
|
65
|
+
--popover: oklch(0.17 0.015 55);
|
|
66
|
+
--popover-foreground: oklch(0.93 0.02 85);
|
|
67
|
+
|
|
68
|
+
/* Sidebar */
|
|
69
|
+
--sidebar: oklch(0.15 0.01 55);
|
|
70
|
+
--sidebar-foreground: oklch(0.93 0.02 85);
|
|
71
|
+
--sidebar-primary: oklch(0.65 0.14 55);
|
|
72
|
+
--sidebar-primary-foreground: oklch(0.95 0.02 85);
|
|
73
|
+
--sidebar-accent: oklch(0.22 0.02 55);
|
|
74
|
+
--sidebar-accent-foreground: oklch(0.93 0.02 85);
|
|
75
|
+
--sidebar-border: oklch(0.28 0.03 55);
|
|
76
|
+
--sidebar-ring: oklch(0.65 0.14 55);
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
@theme inline {
|
|
80
|
+
--font-display: 'Playfair Display', Georgia, serif;
|
|
81
|
+
--font-body: 'Cormorant Garamond', Georgia, serif;
|
|
82
|
+
|
|
83
|
+
--color-background: var(--background);
|
|
84
|
+
--color-foreground: var(--foreground);
|
|
85
|
+
--color-card: var(--card);
|
|
86
|
+
--color-card-foreground: var(--card-foreground);
|
|
87
|
+
--color-popover: var(--popover);
|
|
88
|
+
--color-popover-foreground: var(--popover-foreground);
|
|
89
|
+
--color-primary: var(--primary);
|
|
90
|
+
--color-primary-foreground: var(--primary-foreground);
|
|
91
|
+
--color-secondary: var(--secondary);
|
|
92
|
+
--color-secondary-foreground: var(--secondary-foreground);
|
|
93
|
+
--color-muted: var(--muted);
|
|
94
|
+
--color-muted-foreground: var(--muted-foreground);
|
|
95
|
+
--color-accent: var(--accent);
|
|
96
|
+
--color-accent-foreground: var(--accent-foreground);
|
|
97
|
+
--color-destructive: var(--destructive);
|
|
98
|
+
--color-destructive-foreground: var(--destructive-foreground);
|
|
99
|
+
--color-border: var(--border);
|
|
100
|
+
--color-input: var(--input);
|
|
101
|
+
--color-ring: var(--ring);
|
|
102
|
+
--color-chart-1: var(--chart-1);
|
|
103
|
+
--color-chart-2: var(--chart-2);
|
|
104
|
+
--color-chart-3: var(--chart-3);
|
|
105
|
+
--color-chart-4: var(--chart-4);
|
|
106
|
+
--color-chart-5: var(--chart-5);
|
|
107
|
+
--radius-sm: calc(var(--radius) - 4px);
|
|
108
|
+
--radius-md: calc(var(--radius) - 2px);
|
|
109
|
+
--radius-lg: var(--radius);
|
|
110
|
+
--radius-xl: calc(var(--radius) + 4px);
|
|
111
|
+
--color-sidebar: var(--sidebar);
|
|
112
|
+
--color-sidebar-foreground: var(--sidebar-foreground);
|
|
113
|
+
--color-sidebar-primary: var(--sidebar-primary);
|
|
114
|
+
--color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
|
|
115
|
+
--color-sidebar-accent: var(--sidebar-accent);
|
|
116
|
+
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
|
|
117
|
+
--color-sidebar-border: var(--sidebar-border);
|
|
118
|
+
--color-sidebar-ring: var(--sidebar-ring);
|
|
119
|
+
|
|
120
|
+
/* Custom colors for the theme */
|
|
121
|
+
--color-copper: oklch(0.65 0.14 55);
|
|
122
|
+
--color-copper-light: oklch(0.75 0.12 55);
|
|
123
|
+
--color-copper-dark: oklch(0.5 0.15 50);
|
|
124
|
+
--color-gold: oklch(0.72 0.12 85);
|
|
125
|
+
--color-gold-light: oklch(0.82 0.1 85);
|
|
126
|
+
--color-cream: oklch(0.93 0.02 85);
|
|
127
|
+
--color-cream-dark: oklch(0.85 0.03 80);
|
|
128
|
+
--color-charcoal: oklch(0.13 0.01 60);
|
|
129
|
+
--color-charcoal-light: oklch(0.2 0.015 55);
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
@layer base {
|
|
133
|
+
* {
|
|
134
|
+
@apply border-border outline-ring/50;
|
|
135
|
+
}
|
|
136
|
+
body {
|
|
137
|
+
@apply bg-background text-foreground;
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
/* Custom utilities for the theme */
|
|
142
|
+
.font-display {
|
|
143
|
+
font-family: 'Playfair Display', Georgia, serif;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.font-body {
|
|
147
|
+
font-family: 'Cormorant Garamond', Georgia, serif;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
/* Elegant grain texture overlay */
|
|
151
|
+
.grain-texture {
|
|
152
|
+
position: relative;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.grain-texture::after {
|
|
156
|
+
content: '';
|
|
157
|
+
position: absolute;
|
|
158
|
+
inset: 0;
|
|
159
|
+
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
|
|
160
|
+
pointer-events: none;
|
|
161
|
+
opacity: 0.4;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
/* Golden border accent */
|
|
165
|
+
.border-gold-accent {
|
|
166
|
+
border-image: linear-gradient(
|
|
167
|
+
135deg,
|
|
168
|
+
oklch(0.72 0.12 85),
|
|
169
|
+
oklch(0.65 0.14 55),
|
|
170
|
+
oklch(0.72 0.12 85)
|
|
171
|
+
)
|
|
172
|
+
1;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
/* Copper glow effect */
|
|
176
|
+
.glow-copper {
|
|
177
|
+
box-shadow:
|
|
178
|
+
0 0 20px oklch(0.65 0.14 55 / 0.3),
|
|
179
|
+
0 0 40px oklch(0.65 0.14 55 / 0.1);
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
/* Elegant card hover effect */
|
|
183
|
+
.card-hover {
|
|
184
|
+
transition:
|
|
185
|
+
transform 0.3s ease,
|
|
186
|
+
box-shadow 0.3s ease;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.card-hover:hover {
|
|
190
|
+
transform: translateY(-4px);
|
|
191
|
+
box-shadow:
|
|
192
|
+
0 12px 40px oklch(0 0 0 / 0.4),
|
|
193
|
+
0 0 20px oklch(0.65 0.14 55 / 0.15);
|
|
194
|
+
}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Events",
|
|
3
|
+
"description": "A pastry conference website with speakers, sessions, schedule, and AI assistant built with content-collections and TanStack Start for Netlify.",
|
|
4
|
+
"phase": "example",
|
|
5
|
+
"modes": ["file-router"],
|
|
6
|
+
"type": "example",
|
|
7
|
+
"priority": 10,
|
|
8
|
+
"link": "",
|
|
9
|
+
"routes": [
|
|
10
|
+
{
|
|
11
|
+
"url": "/",
|
|
12
|
+
"path": "src/routes/index.tsx",
|
|
13
|
+
"jsName": "EventsHome"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"url": "/schedule",
|
|
17
|
+
"path": "src/routes/schedule.index.tsx",
|
|
18
|
+
"name": "Schedule",
|
|
19
|
+
"jsName": "SchedulePage"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"url": "/speakers",
|
|
23
|
+
"path": "src/routes/speakers.index.tsx",
|
|
24
|
+
"name": "Speakers",
|
|
25
|
+
"jsName": "SpeakersPage"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"url": "/speakers/$slug",
|
|
29
|
+
"path": "src/routes/speakers.$slug.tsx",
|
|
30
|
+
"jsName": "SpeakerDetail"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"url": "/talks",
|
|
34
|
+
"path": "src/routes/talks.index.tsx",
|
|
35
|
+
"name": "Sessions",
|
|
36
|
+
"jsName": "TalksPage"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"url": "/talks/$slug",
|
|
40
|
+
"path": "src/routes/talks.$slug.tsx",
|
|
41
|
+
"jsName": "TalkDetail"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"url": "/api/remy-chat",
|
|
45
|
+
"path": "src/routes/api.remy-chat.ts",
|
|
46
|
+
"jsName": "RemyChatAPI"
|
|
47
|
+
}
|
|
48
|
+
],
|
|
49
|
+
"integrations": [
|
|
50
|
+
{
|
|
51
|
+
"type": "header-user",
|
|
52
|
+
"path": "src/components/RemyButton",
|
|
53
|
+
"jsName": "RemyButton"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"type": "vite-plugin",
|
|
57
|
+
"import": "import contentCollections from '@content-collections/vite'",
|
|
58
|
+
"code": "contentCollections()"
|
|
59
|
+
}
|
|
60
|
+
],
|
|
61
|
+
"dependsOn": [],
|
|
62
|
+
"variables": []
|
|
63
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"dependencies": {
|
|
3
|
+
"@tanstack/ai": "latest",
|
|
4
|
+
"@tanstack/ai-anthropic": "latest",
|
|
5
|
+
"@tanstack/ai-client": "latest",
|
|
6
|
+
"@tanstack/ai-gemini": "latest",
|
|
7
|
+
"@tanstack/ai-ollama": "latest",
|
|
8
|
+
"@tanstack/ai-openai": "latest",
|
|
9
|
+
"@tanstack/ai-react": "latest",
|
|
10
|
+
"@tanstack/store": "^0.7.0",
|
|
11
|
+
"class-variance-authority": "^0.7.1",
|
|
12
|
+
"clsx": "^2.1.1",
|
|
13
|
+
"marked": "^15.0.8",
|
|
14
|
+
"streamdown": "^1.6.5",
|
|
15
|
+
"tailwind-merge": "^3.0.2",
|
|
16
|
+
"tailwindcss-animate": "^1.0.7",
|
|
17
|
+
"zod": "^4.3.5"
|
|
18
|
+
},
|
|
19
|
+
"devDependencies": {
|
|
20
|
+
"@content-collections/core": "^0.13.1",
|
|
21
|
+
"@content-collections/vite": "^0.2.8"
|
|
22
|
+
}
|
|
23
|
+
}
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
# Resume Example
|
|
2
|
+
|
|
3
|
+
A professional resume template built with TanStack Start and content-collections for Netlify deployment.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- **Content Collections**: Work experience and education managed as markdown files
|
|
8
|
+
- **Skills Filter**: Interactive sidebar to filter jobs by skills/technologies
|
|
9
|
+
- **Beautiful UI**: Modern design with shadcn/ui components
|
|
10
|
+
- **SSR Ready**: Full server-side rendering with TanStack Start
|
|
11
|
+
|
|
12
|
+
## Project Structure
|
|
13
|
+
|
|
14
|
+
```
|
|
15
|
+
├── content/
|
|
16
|
+
│ ├── jobs/ # Work experience entries
|
|
17
|
+
│ └── education/ # Education entries
|
|
18
|
+
├── src/
|
|
19
|
+
│ ├── components/
|
|
20
|
+
│ │ └── ui/ # Shadcn UI components
|
|
21
|
+
│ │ ├── badge.tsx
|
|
22
|
+
│ │ ├── card.tsx
|
|
23
|
+
│ │ ├── checkbox.tsx
|
|
24
|
+
│ │ ├── hover-card.tsx
|
|
25
|
+
│ │ └── separator.tsx
|
|
26
|
+
│ ├── lib/
|
|
27
|
+
│ │ └── utils.ts # Utility functions
|
|
28
|
+
│ └── routes/
|
|
29
|
+
│ ├── __root.tsx # Root layout
|
|
30
|
+
│ └── index.tsx # Resume page
|
|
31
|
+
└── public/
|
|
32
|
+
└── headshot-on-white.jpg
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## Adding Work Experience
|
|
36
|
+
|
|
37
|
+
Create a new markdown file in `content/jobs/` with the following frontmatter:
|
|
38
|
+
|
|
39
|
+
```markdown
|
|
40
|
+
---
|
|
41
|
+
jobTitle: Your Job Title
|
|
42
|
+
company: Company Name
|
|
43
|
+
location: City, State
|
|
44
|
+
startDate: 2024-01-01
|
|
45
|
+
endDate: 2024-12-31 # Optional - omit for current position
|
|
46
|
+
summary: Brief summary of your role
|
|
47
|
+
tags:
|
|
48
|
+
- React
|
|
49
|
+
- TypeScript
|
|
50
|
+
- Web Development
|
|
51
|
+
---
|
|
52
|
+
|
|
53
|
+
Detailed description of your responsibilities and achievements...
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
## Adding Education
|
|
57
|
+
|
|
58
|
+
Create a new markdown file in `content/education/`:
|
|
59
|
+
|
|
60
|
+
```markdown
|
|
61
|
+
---
|
|
62
|
+
school: School Name
|
|
63
|
+
summary: Degree or Program Name
|
|
64
|
+
startDate: 2020-01-01
|
|
65
|
+
endDate: 2024-01-01
|
|
66
|
+
tags:
|
|
67
|
+
- Relevant
|
|
68
|
+
- Skills
|
|
69
|
+
---
|
|
70
|
+
|
|
71
|
+
Details about your education...
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
## Development
|
|
75
|
+
|
|
76
|
+
```bash
|
|
77
|
+
# Start development server
|
|
78
|
+
npm run dev
|
|
79
|
+
|
|
80
|
+
# Build for production
|
|
81
|
+
npm run build
|
|
82
|
+
```
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
---
|
|
2
|
+
school: Code School
|
|
3
|
+
summary: Full Stack Development
|
|
4
|
+
startDate: 2020-01-01
|
|
5
|
+
endDate: 2020-12-31
|
|
6
|
+
tags:
|
|
7
|
+
[
|
|
8
|
+
"Full Stack Development",
|
|
9
|
+
"JavaScript",
|
|
10
|
+
"React",
|
|
11
|
+
"Node.js",
|
|
12
|
+
"Express",
|
|
13
|
+
"MongoDB",
|
|
14
|
+
]
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
Completed a comprehensive full stack development course covering JavaScript, React, Node.js, Express, and MongoDB. Gained hands-on experience with modern web development frameworks and databases while building a full stack application.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
jobTitle: Frontend Development Consultant
|
|
3
|
+
company: Freelance
|
|
4
|
+
location: Remote
|
|
5
|
+
startDate: 2020-01-01
|
|
6
|
+
endDate: 2020-12-31
|
|
7
|
+
summary: Independent frontend development consultant working with multiple clients on web applications and sites
|
|
8
|
+
description:
|
|
9
|
+
tags:
|
|
10
|
+
["React", "TypeScript", "Frontend Development", "JavaScript", "CSS", "HTML"]
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
Provided expert frontend development services to various clients, specializing in React, TypeScript, and modern web technologies. Delivered responsive and performant web applications while maintaining high code quality and best practices.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
jobTitle: Junior Frontend Developer
|
|
3
|
+
company: IniTech
|
|
4
|
+
location: Remote
|
|
5
|
+
startDate: 2021-01-01
|
|
6
|
+
endDate: 2021-12-31
|
|
7
|
+
summary: Junior frontend developer working on React-based web applications using modern development practices
|
|
8
|
+
description:
|
|
9
|
+
tags:
|
|
10
|
+
[
|
|
11
|
+
"React",
|
|
12
|
+
"TypeScript",
|
|
13
|
+
"Frontend Development",
|
|
14
|
+
"JavaScript",
|
|
15
|
+
"TanStack",
|
|
16
|
+
"Web Development",
|
|
17
|
+
]
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
Worked as a junior frontend developer at IniTech, contributing to React-based web applications. Collaborated with the development team to implement responsive user interfaces, integrate REST APIs, and maintain code quality. Gained hands-on experience with modern frontend technologies and development workflows while working on production applications.
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
---
|
|
2
|
+
jobTitle: Frontend Team Lead
|
|
3
|
+
company: IniTech
|
|
4
|
+
location: Remote
|
|
5
|
+
startDate: 2022-01-01
|
|
6
|
+
endDate: 2022-12-31
|
|
7
|
+
summary: Led a cross-functional team of three engineers in developing and maintaining IniTech's marketing platform, driving technical decisions and implementing modern development practices
|
|
8
|
+
description:
|
|
9
|
+
tags:
|
|
10
|
+
[
|
|
11
|
+
"React",
|
|
12
|
+
"TypeScript",
|
|
13
|
+
"Team Leadership",
|
|
14
|
+
"Frontend Architecture",
|
|
15
|
+
"Technical Leadership",
|
|
16
|
+
"Project Management",
|
|
17
|
+
"TanStack",
|
|
18
|
+
"Web Development",
|
|
19
|
+
]
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
Led the development and maintenance of IniTech's marketing platform as Frontend Team Lead, managing a cross-functional team of three engineers including a backend developer and a DevOps engineer. Key achievements and responsibilities included:
|
|
23
|
+
|
|
24
|
+
- Architected and implemented a modern React-based marketing platform using TypeScript and TanStack, resulting in a 40% improvement in page load times
|
|
25
|
+
- Managed and mentored a team of three engineers, conducting regular code reviews, sprint planning, and technical guidance
|
|
26
|
+
- Collaborated with marketing stakeholders to define and implement new features while maintaining high code quality and performance standards
|
|
27
|
+
- Established CI/CD pipelines and development workflows in partnership with DevOps, reducing deployment time by 60%
|
|
28
|
+
- Coordinated with the backend developer to design and implement RESTful APIs, ensuring seamless integration between frontend and backend systems
|
|
29
|
+
- Introduced modern development practices including automated testing, component documentation, and performance monitoring
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
---
|
|
2
|
+
jobTitle: Senior Frontend Developer
|
|
3
|
+
company: Initrode
|
|
4
|
+
location: Remote
|
|
5
|
+
startDate: 2024-01-01
|
|
6
|
+
summary: Developed and architected real-time data visualization features for Initrode's enterprise dashboard platform, implementing a robust WebSocket layer and optimizing performance for large-scale data streams
|
|
7
|
+
description:
|
|
8
|
+
tags:
|
|
9
|
+
[
|
|
10
|
+
"React",
|
|
11
|
+
"TypeScript",
|
|
12
|
+
"WebSockets",
|
|
13
|
+
"Real-time Data",
|
|
14
|
+
"System Architecture",
|
|
15
|
+
"Performance Optimization",
|
|
16
|
+
"TanStack",
|
|
17
|
+
"Web Development",
|
|
18
|
+
]
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
Served as a Senior Frontend Developer on Initrode's Dashboard team, focusing on building high-performance, real-time data visualization features for enterprise clients. Key achievements and responsibilities included:
|
|
22
|
+
|
|
23
|
+
- Designed and implemented a WebSocket-based real-time data transport layer, enabling live updates for dashboard components with sub-100ms latency
|
|
24
|
+
- Architected and developed a modular dashboard framework using React and TypeScript, supporting dynamic widget composition and real-time data streams
|
|
25
|
+
- Optimized frontend performance for handling large-scale data sets, implementing efficient data structures and virtualization techniques that improved rendering performance by 65%
|
|
26
|
+
- Built reusable charting and visualization components using D3.js and TanStack libraries, supporting real-time updates and complex data transformations
|
|
27
|
+
- Implemented client-side data caching and state management strategies, reducing server load by 40% while maintaining data consistency
|
|
28
|
+
- Developed automated testing suites for WebSocket connections and real-time data flow, achieving 90% test coverage for critical paths
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { defineCollection, defineConfig } from '@content-collections/core'
|
|
2
|
+
import { z } from 'zod'
|
|
3
|
+
|
|
4
|
+
const jobs = defineCollection({
|
|
5
|
+
name: 'jobs',
|
|
6
|
+
directory: 'content/jobs',
|
|
7
|
+
include: '**/*.md',
|
|
8
|
+
schema: z.object({
|
|
9
|
+
jobTitle: z.string(),
|
|
10
|
+
summary: z.string(),
|
|
11
|
+
startDate: z.string(),
|
|
12
|
+
endDate: z.string().optional(),
|
|
13
|
+
company: z.string(),
|
|
14
|
+
location: z.string(),
|
|
15
|
+
tags: z.array(z.string()),
|
|
16
|
+
content: z.string(),
|
|
17
|
+
}),
|
|
18
|
+
})
|
|
19
|
+
|
|
20
|
+
const education = defineCollection({
|
|
21
|
+
name: 'education',
|
|
22
|
+
directory: 'content/education',
|
|
23
|
+
include: '**/*.md',
|
|
24
|
+
schema: z.object({
|
|
25
|
+
school: z.string(),
|
|
26
|
+
summary: z.string(),
|
|
27
|
+
startDate: z.string(),
|
|
28
|
+
endDate: z.string().optional(),
|
|
29
|
+
tags: z.array(z.string()),
|
|
30
|
+
content: z.string(),
|
|
31
|
+
}),
|
|
32
|
+
})
|
|
33
|
+
|
|
34
|
+
export default defineConfig({
|
|
35
|
+
collections: [jobs, education],
|
|
36
|
+
})
|
|
Binary file
|