Prettier format pending files

This commit is contained in:
Builder.io 2025-11-06 20:02:39 +00:00
parent eb1937c00a
commit 072cafac73
2 changed files with 17 additions and 6 deletions

View file

@ -168,7 +168,10 @@ const App = () => (
<Route path="/research" element={<Labs />} /> <Route path="/research" element={<Labs />} />
<Route path="/labs" element={<Labs />} /> <Route path="/labs" element={<Labs />} />
<Route path="/dev-link" element={<DevLink />} /> <Route path="/dev-link" element={<DevLink />} />
<Route path="/dev-link/waitlist" element={<DevLinkProfiles />} /> <Route
path="/dev-link/waitlist"
element={<DevLinkProfiles />}
/>
{/* Resource routes */} {/* Resource routes */}
<Route path="/docs" element={<DocsLayout />}> <Route path="/docs" element={<DocsLayout />}>

View file

@ -31,12 +31,16 @@ export default function DevLinkProfiles() {
<div className="flex items-center justify-between mb-4"> <div className="flex items-center justify-between mb-4">
<div> <div>
<h1 className="text-4xl font-black tracking-tight text-cyan-300 sm:text-5xl mb-2"> <h1 className="text-4xl font-black tracking-tight text-cyan-300 sm:text-5xl mb-2">
{typeof window !== 'undefined' && window.location.pathname.includes('/waitlist') ? 'Dev-Link Waitlist' : 'Browse Profiles'} {typeof window !== "undefined" &&
window.location.pathname.includes("/waitlist")
? "Dev-Link Waitlist"
: "Browse Profiles"}
</h1> </h1>
<p className="text-lg text-cyan-100/80 max-w-2xl"> <p className="text-lg text-cyan-100/80 max-w-2xl">
{typeof window !== 'undefined' && window.location.pathname.includes('/waitlist') {typeof window !== "undefined" &&
? 'Join the professional network for Roblox developers. Sign up for early access!' window.location.pathname.includes("/waitlist")
: 'Explore talented Roblox developers in our community.'} ? "Join the professional network for Roblox developers. Sign up for early access!"
: "Explore talented Roblox developers in our community."}
</p> </p>
</div> </div>
</div> </div>
@ -51,7 +55,11 @@ export default function DevLinkProfiles() {
src="https://dev-link.me/waitlist" src="https://dev-link.me/waitlist"
className="w-full border-0" className="w-full border-0"
title="Dev-Link Waitlist" title="Dev-Link Waitlist"
style={{ minHeight: "800px", height: "80vh", maxHeight: "800px" }} style={{
minHeight: "800px",
height: "80vh",
maxHeight: "800px",
}}
sandbox="allow-same-origin allow-scripts allow-popups allow-forms allow-top-navigation allow-top-navigation-by-user-activation" sandbox="allow-same-origin allow-scripts allow-popups allow-forms allow-top-navigation allow-top-navigation-by-user-activation"
allow="autoplay; clipboard-write; encrypted-media; picture-in-picture; web-share" allow="autoplay; clipboard-write; encrypted-media; picture-in-picture; web-share"
/> />