mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-01-17 22:28:32 +01:00
Add skill profile to indexing
This commit is contained in:
parent
e716007245
commit
285f2c05f2
@ -5,6 +5,7 @@ import AccountLayout from '../../layouts/AccountLayout.astro';
|
||||
import { UserPublicProfilePage } from '../../components/UserPublicProfile/UserPublicProfilePage';
|
||||
import OpenSourceBanner from '../../components/OpenSourceBanner.astro';
|
||||
import Footer from '../../components/Footer.astro';
|
||||
import BaseLayout from "../../layouts/BaseLayout.astro";
|
||||
|
||||
export const prerender = false;
|
||||
|
||||
@ -27,7 +28,7 @@ if (error || !userDetails) {
|
||||
}
|
||||
---
|
||||
|
||||
<AccountLayout title={userDetails?.name} errorMessage={errorMessage}>
|
||||
<BaseLayout title={`${userDetails?.name} - Skill Profile at roadmap.sh`}>
|
||||
{!errorMessage && <UserPublicProfilePage {...userDetails} client:load />}
|
||||
{
|
||||
errorMessage && (
|
||||
@ -55,7 +56,4 @@ if (error || !userDetails) {
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
<OpenSourceBanner />
|
||||
<Footer />
|
||||
</AccountLayout>
|
||||
</BaseLayout>
|
||||
|
Loading…
x
Reference in New Issue
Block a user