Skip to content

Commit 0428009

Browse files
rename intro to general
1 parent a5c691a commit 0428009

Some content is hidden

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

42 files changed

+30
-24
lines changed

.github/ISSUE_TEMPLATE/module-review.md

+1-1

announcements/Looking for Contributors.mdx

+1-1

content/1_Intro/Choosing_Lang.mdx content/1_General/Choosing_Lang.mdx

+1-1

content/1_Intro/Code_Con.mdx content/1_General/Code_Con.mdx

+1-1
File renamed without changes.

content/1_Intro/Expected.mdx content/1_General/Expected.mdx

+1-1

content/1_Intro/Using_This_Guide.mdx content/1_General/Using_This_Guide.mdx

+1-1
File renamed without changes.

content/2_Bronze/Intro_Complete.mdx

+1-1

content/3_Silver/DFS.mdx

+1-1

content/3_Silver/Intro_Tree.mdx

+1-1

content/3_Silver/Sorting_Custom.mdx

+1-1

content/4_Gold/BFS.mdx

+1-1

content/4_Gold/TopoSort.mdx

+2-2

content/ordering.ts

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
// Section -> Chapter -> Module
22

3-
export type SectionID = 'intro' | 'bronze' | 'silver' | 'gold' | 'plat' | 'adv';
3+
export type SectionID =
4+
| 'general'
5+
| 'bronze'
6+
| 'silver'
7+
| 'gold'
8+
| 'plat'
9+
| 'adv';
410

511
export type Chapter = {
612
name: string;
@@ -9,7 +15,7 @@ export type Chapter = {
915
};
1016

1117
const MODULE_ORDERING: { [key in SectionID]: Chapter[] } = {
12-
intro: [
18+
general: [
1319
{
1420
name: 'About This Guide',
1521
description:
@@ -196,7 +202,7 @@ export const SECTIONS: SectionID[] = Object.keys(
196202
MODULE_ORDERING
197203
) as SectionID[];
198204
export const SECTION_LABELS: { [key in SectionID]: string } = {
199-
intro: 'Intro',
205+
general: 'General',
200206
bronze: 'Bronze',
201207
silver: 'Silver',
202208
gold: 'Gold',

docs/Content Documentation.md

+3-3

docs/Module Review Checklist.md

+1-1

src/components/Dashboard/WelcomeBackBanner.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default function WelcomeBackBanner({
99
<div className="bg-blue-700 shadow hover:shadow-lg transition duration-150 ease-in-out lg:rounded-lg w-full">
1010
<Link
1111
className="p-8 block sm:flex sm:items-center sm:justify-between"
12-
to={lastViewedModuleURL || '/intro/using-this-guide'}
12+
to={lastViewedModuleURL || '/general/using-this-guide'}
1313
>
1414
<div>
1515
<h3 className="text-2xl leading-7 font-medium text-white">

src/components/MarkdownLayout/SidebarNav/SidebarNav.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export const SidebarNav = () => {
2222
);
2323
const [activeSection, setActiveSection] = useState(
2424
markdownLayoutInfo instanceof SolutionInfo
25-
? 'intro'
25+
? 'general'
2626
: markdownLayoutInfo.section
2727
);
2828

src/pages/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -548,7 +548,7 @@ export default function IndexPage(props: PageProps) {
548548
<p className="text-base leading-6 text-gray-500">
549549
To learn more about contributing, please visit{' '}
550550
<Link
551-
to="/intro/contributing"
551+
to="/general/contributing"
552552
className="text-blue-600 underline"
553553
>
554554
this page

src/templates/syllabusTemplate.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const SectionContainer = styled.div`
4848
`;
4949

5050
const HeroBGColor: { [key in SectionID]: string } = {
51-
intro: 'bg-blue-600',
51+
general: 'bg-blue-600',
5252
bronze: 'bg-orange-600',
5353
silver: 'bg-teal-600',
5454
gold: 'bg-yellow-600',

0 commit comments

Comments
 (0)