Skip to content

Commit 53b712c

Browse files
Transition: Nord Atom UI (#167)
> Transferred and improved old Nord Atom UI assets This includes new screenshots for the Nord Atom UI repository as well as all assets for the documentations and landing pages. > Implemented landing and document pages for "Nord Atom UI" This includes the initial sections for features and basic documentation pages. > Transferred and polished existing "Nord Atom UI" docs and assets Initially this includes the install & activation guide, instructions how to develop the theme and the available theme configurations. GH-166
1 parent 453601e commit 53b712c

File tree

74 files changed

+13851
-38
lines changed

Some content is hidden

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

74 files changed

+13851
-38
lines changed
317 KB

assets/images/ports/atom-ui/repository-hero.ai

Lines changed: 12419 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 9 additions & 0 deletions
Binary file not shown.
Binary file not shown.
Lines changed: 105 additions & 0 deletions
Binary file not shown.
Lines changed: 133 additions & 0 deletions
Lines changed: 76 additions & 0 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
/*
2+
* Copyright (C) 2018-present Arctic Ice Studio <[email protected]>
3+
* Copyright (C) 2018-present Sven Greb <[email protected]>
4+
*
5+
* Project: Nord Docs
6+
* Repository: https://github.com/arcticicestudio/nord-docs
7+
* License: MIT
8+
*/
9+
10+
import React from "react";
11+
12+
import { WaveFooter } from "atoms/core/vectors/divider";
13+
import Section, { Content } from "containers/core/Section";
14+
import { BookOpen, Zap } from "atoms/core/vectors/icons";
15+
import { ROUTE_DOCS_PORTS_ATOM_UI } from "config/routes/mappings";
16+
import { topicsGettingStarted, topicsReferences } from "data/components/organisms/page/docs/ports/atom-ui/topics";
17+
import { sectionIdFor } from "utils";
18+
import { colors } from "styles/theme";
19+
20+
import { ContentsCard, CardGrid } from "../../../shared";
21+
22+
const SECTION_ID = sectionIdFor(ROUTE_DOCS_PORTS_ATOM_UI, 1);
23+
24+
/**
25+
* The component that represents the contents section of the docs page for the "Nord Atom UI" port project.
26+
*
27+
* @author Arctic Ice Studio <[email protected]>
28+
* @author Sven Greb <[email protected]>
29+
* @since 0.19.0
30+
*/
31+
const SectionContents = () => (
32+
<Section id={SECTION_ID} variant="tertiary">
33+
<Content centered>
34+
<CardGrid>
35+
<ContentsCard
36+
accentColor={colors.nord8}
37+
logoComponent={Zap}
38+
svgType="stroke"
39+
title="Getting Started"
40+
topics={topicsGettingStarted}
41+
>
42+
Learn how to install, activate, customize and develop the package.
43+
</ContentsCard>
44+
<ContentsCard accentColor={colors.nord10} logoComponent={BookOpen} title="References" topics={topicsReferences}>
45+
Learn about supported packages and how to deal with occurring problems.
46+
</ContentsCard>
47+
</CardGrid>
48+
</Content>
49+
<WaveFooter />
50+
</Section>
51+
);
52+
53+
export default SectionContents;
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/*
2+
* Copyright (C) 2018-present Arctic Ice Studio <[email protected]>
3+
* Copyright (C) 2018-present Sven Greb <[email protected]>
4+
*
5+
* Project: Nord Docs
6+
* Repository: https://github.com/arcticicestudio/nord-docs
7+
* License: MIT
8+
*/
9+
10+
export { default } from "./SectionContents";

0 commit comments

Comments
 (0)