Skip to content

Refinement documentation 01 #418

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 6, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Added the title documentation on the side navigation
  • Loading branch information
loris-maru committed Jun 5, 2025
commit df4d7ac4769b943a5fc3f58fd13c8792cd7869ed
3 changes: 2 additions & 1 deletion src/components/documentation/global/side-bloc.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ export default function DocumentationSideBloc() {
return (
<nav className="w-full text-white">
<LogoAsLink />
<div className="relative mt-10 flex w-full flex-col gap-y-3">
<div className="mb-2 mt-16 text-xl font-bold text-primary-3">Documentation</div>
<div className="relative flex w-full flex-col gap-y-3">
{DOCUMENTATION_ARCHITECTURE.map((item: SingleSectionProps) => {
return <NavItem content={item} key={item.slug} />;
})}
Expand Down
2 changes: 1 addition & 1 deletion src/components/documentation/main/HeaderHome.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Link from 'next/link';
export default function HeaderHome() {
return (
<div className="w-full overflow-hidden bg-documentationHome bg-cover bg-center p-8 text-white">
<h1 className="text-3xl font-bold">Get started with the Open Brain Platform</h1>
<h1 className="text-3xl font-bold">Get started with your Virtual Lab</h1>
<p className="mb-6 text-base font-normal leading-normal">
Discover everything you can do with your virtual lab and your projects
</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@ import { CircuitSchemaProps } from '@/components/explore-section/Circuit/type';
import { buildCircuitMap } from '@/components/explore-section/Circuit/utils/circuits-map';
import { brainRegionSidebarIsCollapsedAtom } from '@/state/brain-regions';

import { CircuitSchemaProps } from '@/components/explore-section/Circuit/type';
import { buildCircuitMap } from '@/components/explore-section/Circuit/utils/circuits-map';
import { brainRegionSidebarIsCollapsedAtom } from '@/state/brain-regions';

function MainDetailViewCore({
content,
parentCircuit,
Expand Down