minor updates
This commit is contained in:
parent
ea8535130d
commit
e6d67392d2
216
graphql-types.ts
216
graphql-types.ts
|
@ -254,6 +254,8 @@ export type DirectoryCtimeArgs = {
|
||||||
export type Site = Node & {
|
export type Site = Node & {
|
||||||
buildTime?: Maybe<Scalars['Date']>;
|
buildTime?: Maybe<Scalars['Date']>;
|
||||||
siteMetadata?: Maybe<SiteSiteMetadata>;
|
siteMetadata?: Maybe<SiteSiteMetadata>;
|
||||||
|
port?: Maybe<Scalars['Int']>;
|
||||||
|
host?: Maybe<Scalars['String']>;
|
||||||
polyfill?: Maybe<Scalars['Boolean']>;
|
polyfill?: Maybe<Scalars['Boolean']>;
|
||||||
pathPrefix?: Maybe<Scalars['String']>;
|
pathPrefix?: Maybe<Scalars['String']>;
|
||||||
id: Scalars['ID'];
|
id: Scalars['ID'];
|
||||||
|
@ -294,15 +296,15 @@ export type SitePage = Node & {
|
||||||
internalComponentName: Scalars['String'];
|
internalComponentName: Scalars['String'];
|
||||||
componentChunkName: Scalars['String'];
|
componentChunkName: Scalars['String'];
|
||||||
matchPath?: Maybe<Scalars['String']>;
|
matchPath?: Maybe<Scalars['String']>;
|
||||||
|
isCreatedByStatefulCreatePages?: Maybe<Scalars['Boolean']>;
|
||||||
|
pluginCreator?: Maybe<SitePlugin>;
|
||||||
|
pluginCreatorId?: Maybe<Scalars['String']>;
|
||||||
|
componentPath?: Maybe<Scalars['String']>;
|
||||||
id: Scalars['ID'];
|
id: Scalars['ID'];
|
||||||
parent?: Maybe<Node>;
|
parent?: Maybe<Node>;
|
||||||
children: Array<Node>;
|
children: Array<Node>;
|
||||||
internal: Internal;
|
internal: Internal;
|
||||||
isCreatedByStatefulCreatePages?: Maybe<Scalars['Boolean']>;
|
|
||||||
context?: Maybe<SitePageContext>;
|
context?: Maybe<SitePageContext>;
|
||||||
pluginCreator?: Maybe<SitePlugin>;
|
|
||||||
pluginCreatorId?: Maybe<Scalars['String']>;
|
|
||||||
componentPath?: Maybe<Scalars['String']>;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export type SitePageContext = {
|
export type SitePageContext = {
|
||||||
|
@ -643,6 +645,8 @@ export type QueryAllDirectoryArgs = {
|
||||||
export type QuerySiteArgs = {
|
export type QuerySiteArgs = {
|
||||||
buildTime?: Maybe<DateQueryOperatorInput>;
|
buildTime?: Maybe<DateQueryOperatorInput>;
|
||||||
siteMetadata?: Maybe<SiteSiteMetadataFilterInput>;
|
siteMetadata?: Maybe<SiteSiteMetadataFilterInput>;
|
||||||
|
port?: Maybe<IntQueryOperatorInput>;
|
||||||
|
host?: Maybe<StringQueryOperatorInput>;
|
||||||
polyfill?: Maybe<BooleanQueryOperatorInput>;
|
polyfill?: Maybe<BooleanQueryOperatorInput>;
|
||||||
pathPrefix?: Maybe<StringQueryOperatorInput>;
|
pathPrefix?: Maybe<StringQueryOperatorInput>;
|
||||||
id?: Maybe<StringQueryOperatorInput>;
|
id?: Maybe<StringQueryOperatorInput>;
|
||||||
|
@ -687,15 +691,15 @@ export type QuerySitePageArgs = {
|
||||||
internalComponentName?: Maybe<StringQueryOperatorInput>;
|
internalComponentName?: Maybe<StringQueryOperatorInput>;
|
||||||
componentChunkName?: Maybe<StringQueryOperatorInput>;
|
componentChunkName?: Maybe<StringQueryOperatorInput>;
|
||||||
matchPath?: Maybe<StringQueryOperatorInput>;
|
matchPath?: Maybe<StringQueryOperatorInput>;
|
||||||
|
isCreatedByStatefulCreatePages?: Maybe<BooleanQueryOperatorInput>;
|
||||||
|
pluginCreator?: Maybe<SitePluginFilterInput>;
|
||||||
|
pluginCreatorId?: Maybe<StringQueryOperatorInput>;
|
||||||
|
componentPath?: Maybe<StringQueryOperatorInput>;
|
||||||
id?: Maybe<StringQueryOperatorInput>;
|
id?: Maybe<StringQueryOperatorInput>;
|
||||||
parent?: Maybe<NodeFilterInput>;
|
parent?: Maybe<NodeFilterInput>;
|
||||||
children?: Maybe<NodeFilterListInput>;
|
children?: Maybe<NodeFilterListInput>;
|
||||||
internal?: Maybe<InternalFilterInput>;
|
internal?: Maybe<InternalFilterInput>;
|
||||||
isCreatedByStatefulCreatePages?: Maybe<BooleanQueryOperatorInput>;
|
|
||||||
context?: Maybe<SitePageContextFilterInput>;
|
context?: Maybe<SitePageContextFilterInput>;
|
||||||
pluginCreator?: Maybe<SitePluginFilterInput>;
|
|
||||||
pluginCreatorId?: Maybe<StringQueryOperatorInput>;
|
|
||||||
componentPath?: Maybe<StringQueryOperatorInput>;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -1531,6 +1535,8 @@ export type SiteFieldsEnum =
|
||||||
| 'siteMetadata___title'
|
| 'siteMetadata___title'
|
||||||
| 'siteMetadata___description'
|
| 'siteMetadata___description'
|
||||||
| 'siteMetadata___siteUrl'
|
| 'siteMetadata___siteUrl'
|
||||||
|
| 'port'
|
||||||
|
| 'host'
|
||||||
| 'polyfill'
|
| 'polyfill'
|
||||||
| 'pathPrefix'
|
| 'pathPrefix'
|
||||||
| 'id'
|
| 'id'
|
||||||
|
@ -1632,6 +1638,8 @@ export type SiteGroupConnection = {
|
||||||
export type SiteFilterInput = {
|
export type SiteFilterInput = {
|
||||||
buildTime?: Maybe<DateQueryOperatorInput>;
|
buildTime?: Maybe<DateQueryOperatorInput>;
|
||||||
siteMetadata?: Maybe<SiteSiteMetadataFilterInput>;
|
siteMetadata?: Maybe<SiteSiteMetadataFilterInput>;
|
||||||
|
port?: Maybe<IntQueryOperatorInput>;
|
||||||
|
host?: Maybe<StringQueryOperatorInput>;
|
||||||
polyfill?: Maybe<BooleanQueryOperatorInput>;
|
polyfill?: Maybe<BooleanQueryOperatorInput>;
|
||||||
pathPrefix?: Maybe<StringQueryOperatorInput>;
|
pathPrefix?: Maybe<StringQueryOperatorInput>;
|
||||||
id?: Maybe<StringQueryOperatorInput>;
|
id?: Maybe<StringQueryOperatorInput>;
|
||||||
|
@ -1809,10 +1817,6 @@ export type SiteFunctionSortInput = {
|
||||||
order?: Maybe<Array<Maybe<SortOrderEnum>>>;
|
order?: Maybe<Array<Maybe<SortOrderEnum>>>;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type SitePageContextFilterInput = {
|
|
||||||
slug?: Maybe<StringQueryOperatorInput>;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type SitePluginFilterInput = {
|
export type SitePluginFilterInput = {
|
||||||
id?: Maybe<StringQueryOperatorInput>;
|
id?: Maybe<StringQueryOperatorInput>;
|
||||||
parent?: Maybe<NodeFilterInput>;
|
parent?: Maybe<NodeFilterInput>;
|
||||||
|
@ -1937,6 +1941,10 @@ export type SitePluginPackageJsonPeerDependenciesFilterInput = {
|
||||||
version?: Maybe<StringQueryOperatorInput>;
|
version?: Maybe<StringQueryOperatorInput>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export type SitePageContextFilterInput = {
|
||||||
|
slug?: Maybe<StringQueryOperatorInput>;
|
||||||
|
};
|
||||||
|
|
||||||
export type SitePageConnection = {
|
export type SitePageConnection = {
|
||||||
totalCount: Scalars['Int'];
|
totalCount: Scalars['Int'];
|
||||||
edges: Array<SitePageEdge>;
|
edges: Array<SitePageEdge>;
|
||||||
|
@ -1988,6 +1996,93 @@ export type SitePageFieldsEnum =
|
||||||
| 'internalComponentName'
|
| 'internalComponentName'
|
||||||
| 'componentChunkName'
|
| 'componentChunkName'
|
||||||
| 'matchPath'
|
| 'matchPath'
|
||||||
|
| 'isCreatedByStatefulCreatePages'
|
||||||
|
| 'pluginCreator___id'
|
||||||
|
| 'pluginCreator___parent___id'
|
||||||
|
| 'pluginCreator___parent___parent___id'
|
||||||
|
| 'pluginCreator___parent___parent___children'
|
||||||
|
| 'pluginCreator___parent___children'
|
||||||
|
| 'pluginCreator___parent___children___id'
|
||||||
|
| 'pluginCreator___parent___children___children'
|
||||||
|
| 'pluginCreator___parent___internal___content'
|
||||||
|
| 'pluginCreator___parent___internal___contentDigest'
|
||||||
|
| 'pluginCreator___parent___internal___description'
|
||||||
|
| 'pluginCreator___parent___internal___fieldOwners'
|
||||||
|
| 'pluginCreator___parent___internal___ignoreType'
|
||||||
|
| 'pluginCreator___parent___internal___mediaType'
|
||||||
|
| 'pluginCreator___parent___internal___owner'
|
||||||
|
| 'pluginCreator___parent___internal___type'
|
||||||
|
| 'pluginCreator___children'
|
||||||
|
| 'pluginCreator___children___id'
|
||||||
|
| 'pluginCreator___children___parent___id'
|
||||||
|
| 'pluginCreator___children___parent___children'
|
||||||
|
| 'pluginCreator___children___children'
|
||||||
|
| 'pluginCreator___children___children___id'
|
||||||
|
| 'pluginCreator___children___children___children'
|
||||||
|
| 'pluginCreator___children___internal___content'
|
||||||
|
| 'pluginCreator___children___internal___contentDigest'
|
||||||
|
| 'pluginCreator___children___internal___description'
|
||||||
|
| 'pluginCreator___children___internal___fieldOwners'
|
||||||
|
| 'pluginCreator___children___internal___ignoreType'
|
||||||
|
| 'pluginCreator___children___internal___mediaType'
|
||||||
|
| 'pluginCreator___children___internal___owner'
|
||||||
|
| 'pluginCreator___children___internal___type'
|
||||||
|
| 'pluginCreator___internal___content'
|
||||||
|
| 'pluginCreator___internal___contentDigest'
|
||||||
|
| 'pluginCreator___internal___description'
|
||||||
|
| 'pluginCreator___internal___fieldOwners'
|
||||||
|
| 'pluginCreator___internal___ignoreType'
|
||||||
|
| 'pluginCreator___internal___mediaType'
|
||||||
|
| 'pluginCreator___internal___owner'
|
||||||
|
| 'pluginCreator___internal___type'
|
||||||
|
| 'pluginCreator___resolve'
|
||||||
|
| 'pluginCreator___name'
|
||||||
|
| 'pluginCreator___version'
|
||||||
|
| 'pluginCreator___pluginOptions___plugins'
|
||||||
|
| 'pluginCreator___pluginOptions___plugins___resolve'
|
||||||
|
| 'pluginCreator___pluginOptions___plugins___id'
|
||||||
|
| 'pluginCreator___pluginOptions___plugins___name'
|
||||||
|
| 'pluginCreator___pluginOptions___plugins___version'
|
||||||
|
| 'pluginCreator___pluginOptions___output'
|
||||||
|
| 'pluginCreator___pluginOptions___createLinkInHead'
|
||||||
|
| 'pluginCreator___pluginOptions___entryLimit'
|
||||||
|
| 'pluginCreator___pluginOptions___query'
|
||||||
|
| 'pluginCreator___pluginOptions___name'
|
||||||
|
| 'pluginCreator___pluginOptions___path'
|
||||||
|
| 'pluginCreator___pluginOptions___classPrefix'
|
||||||
|
| 'pluginCreator___pluginOptions___showLineNumbers'
|
||||||
|
| 'pluginCreator___pluginOptions___noInlineHighlight'
|
||||||
|
| 'pluginCreator___pluginOptions___languageExtensions'
|
||||||
|
| 'pluginCreator___pluginOptions___languageExtensions___language'
|
||||||
|
| 'pluginCreator___pluginOptions___languageExtensions___extend'
|
||||||
|
| 'pluginCreator___pluginOptions___prompt___user'
|
||||||
|
| 'pluginCreator___pluginOptions___prompt___host'
|
||||||
|
| 'pluginCreator___pluginOptions___prompt___global'
|
||||||
|
| 'pluginCreator___pluginOptions___pathCheck'
|
||||||
|
| 'pluginCreator___pluginOptions___allExtensions'
|
||||||
|
| 'pluginCreator___pluginOptions___isTSX'
|
||||||
|
| 'pluginCreator___pluginOptions___jsxPragma'
|
||||||
|
| 'pluginCreator___nodeAPIs'
|
||||||
|
| 'pluginCreator___ssrAPIs'
|
||||||
|
| 'pluginCreator___pluginFilepath'
|
||||||
|
| 'pluginCreator___packageJson___name'
|
||||||
|
| 'pluginCreator___packageJson___description'
|
||||||
|
| 'pluginCreator___packageJson___version'
|
||||||
|
| 'pluginCreator___packageJson___main'
|
||||||
|
| 'pluginCreator___packageJson___author'
|
||||||
|
| 'pluginCreator___packageJson___license'
|
||||||
|
| 'pluginCreator___packageJson___dependencies'
|
||||||
|
| 'pluginCreator___packageJson___dependencies___name'
|
||||||
|
| 'pluginCreator___packageJson___dependencies___version'
|
||||||
|
| 'pluginCreator___packageJson___devDependencies'
|
||||||
|
| 'pluginCreator___packageJson___devDependencies___name'
|
||||||
|
| 'pluginCreator___packageJson___devDependencies___version'
|
||||||
|
| 'pluginCreator___packageJson___peerDependencies'
|
||||||
|
| 'pluginCreator___packageJson___peerDependencies___name'
|
||||||
|
| 'pluginCreator___packageJson___peerDependencies___version'
|
||||||
|
| 'pluginCreator___packageJson___keywords'
|
||||||
|
| 'pluginCreatorId'
|
||||||
|
| 'componentPath'
|
||||||
| 'id'
|
| 'id'
|
||||||
| 'parent___id'
|
| 'parent___id'
|
||||||
| 'parent___parent___id'
|
| 'parent___parent___id'
|
||||||
|
@ -2074,94 +2169,7 @@ export type SitePageFieldsEnum =
|
||||||
| 'internal___mediaType'
|
| 'internal___mediaType'
|
||||||
| 'internal___owner'
|
| 'internal___owner'
|
||||||
| 'internal___type'
|
| 'internal___type'
|
||||||
| 'isCreatedByStatefulCreatePages'
|
| 'context___slug';
|
||||||
| 'context___slug'
|
|
||||||
| 'pluginCreator___id'
|
|
||||||
| 'pluginCreator___parent___id'
|
|
||||||
| 'pluginCreator___parent___parent___id'
|
|
||||||
| 'pluginCreator___parent___parent___children'
|
|
||||||
| 'pluginCreator___parent___children'
|
|
||||||
| 'pluginCreator___parent___children___id'
|
|
||||||
| 'pluginCreator___parent___children___children'
|
|
||||||
| 'pluginCreator___parent___internal___content'
|
|
||||||
| 'pluginCreator___parent___internal___contentDigest'
|
|
||||||
| 'pluginCreator___parent___internal___description'
|
|
||||||
| 'pluginCreator___parent___internal___fieldOwners'
|
|
||||||
| 'pluginCreator___parent___internal___ignoreType'
|
|
||||||
| 'pluginCreator___parent___internal___mediaType'
|
|
||||||
| 'pluginCreator___parent___internal___owner'
|
|
||||||
| 'pluginCreator___parent___internal___type'
|
|
||||||
| 'pluginCreator___children'
|
|
||||||
| 'pluginCreator___children___id'
|
|
||||||
| 'pluginCreator___children___parent___id'
|
|
||||||
| 'pluginCreator___children___parent___children'
|
|
||||||
| 'pluginCreator___children___children'
|
|
||||||
| 'pluginCreator___children___children___id'
|
|
||||||
| 'pluginCreator___children___children___children'
|
|
||||||
| 'pluginCreator___children___internal___content'
|
|
||||||
| 'pluginCreator___children___internal___contentDigest'
|
|
||||||
| 'pluginCreator___children___internal___description'
|
|
||||||
| 'pluginCreator___children___internal___fieldOwners'
|
|
||||||
| 'pluginCreator___children___internal___ignoreType'
|
|
||||||
| 'pluginCreator___children___internal___mediaType'
|
|
||||||
| 'pluginCreator___children___internal___owner'
|
|
||||||
| 'pluginCreator___children___internal___type'
|
|
||||||
| 'pluginCreator___internal___content'
|
|
||||||
| 'pluginCreator___internal___contentDigest'
|
|
||||||
| 'pluginCreator___internal___description'
|
|
||||||
| 'pluginCreator___internal___fieldOwners'
|
|
||||||
| 'pluginCreator___internal___ignoreType'
|
|
||||||
| 'pluginCreator___internal___mediaType'
|
|
||||||
| 'pluginCreator___internal___owner'
|
|
||||||
| 'pluginCreator___internal___type'
|
|
||||||
| 'pluginCreator___resolve'
|
|
||||||
| 'pluginCreator___name'
|
|
||||||
| 'pluginCreator___version'
|
|
||||||
| 'pluginCreator___pluginOptions___plugins'
|
|
||||||
| 'pluginCreator___pluginOptions___plugins___resolve'
|
|
||||||
| 'pluginCreator___pluginOptions___plugins___id'
|
|
||||||
| 'pluginCreator___pluginOptions___plugins___name'
|
|
||||||
| 'pluginCreator___pluginOptions___plugins___version'
|
|
||||||
| 'pluginCreator___pluginOptions___output'
|
|
||||||
| 'pluginCreator___pluginOptions___createLinkInHead'
|
|
||||||
| 'pluginCreator___pluginOptions___entryLimit'
|
|
||||||
| 'pluginCreator___pluginOptions___query'
|
|
||||||
| 'pluginCreator___pluginOptions___name'
|
|
||||||
| 'pluginCreator___pluginOptions___path'
|
|
||||||
| 'pluginCreator___pluginOptions___classPrefix'
|
|
||||||
| 'pluginCreator___pluginOptions___showLineNumbers'
|
|
||||||
| 'pluginCreator___pluginOptions___noInlineHighlight'
|
|
||||||
| 'pluginCreator___pluginOptions___languageExtensions'
|
|
||||||
| 'pluginCreator___pluginOptions___languageExtensions___language'
|
|
||||||
| 'pluginCreator___pluginOptions___languageExtensions___extend'
|
|
||||||
| 'pluginCreator___pluginOptions___prompt___user'
|
|
||||||
| 'pluginCreator___pluginOptions___prompt___host'
|
|
||||||
| 'pluginCreator___pluginOptions___prompt___global'
|
|
||||||
| 'pluginCreator___pluginOptions___pathCheck'
|
|
||||||
| 'pluginCreator___pluginOptions___allExtensions'
|
|
||||||
| 'pluginCreator___pluginOptions___isTSX'
|
|
||||||
| 'pluginCreator___pluginOptions___jsxPragma'
|
|
||||||
| 'pluginCreator___nodeAPIs'
|
|
||||||
| 'pluginCreator___ssrAPIs'
|
|
||||||
| 'pluginCreator___pluginFilepath'
|
|
||||||
| 'pluginCreator___packageJson___name'
|
|
||||||
| 'pluginCreator___packageJson___description'
|
|
||||||
| 'pluginCreator___packageJson___version'
|
|
||||||
| 'pluginCreator___packageJson___main'
|
|
||||||
| 'pluginCreator___packageJson___author'
|
|
||||||
| 'pluginCreator___packageJson___license'
|
|
||||||
| 'pluginCreator___packageJson___dependencies'
|
|
||||||
| 'pluginCreator___packageJson___dependencies___name'
|
|
||||||
| 'pluginCreator___packageJson___dependencies___version'
|
|
||||||
| 'pluginCreator___packageJson___devDependencies'
|
|
||||||
| 'pluginCreator___packageJson___devDependencies___name'
|
|
||||||
| 'pluginCreator___packageJson___devDependencies___version'
|
|
||||||
| 'pluginCreator___packageJson___peerDependencies'
|
|
||||||
| 'pluginCreator___packageJson___peerDependencies___name'
|
|
||||||
| 'pluginCreator___packageJson___peerDependencies___version'
|
|
||||||
| 'pluginCreator___packageJson___keywords'
|
|
||||||
| 'pluginCreatorId'
|
|
||||||
| 'componentPath';
|
|
||||||
|
|
||||||
export type SitePageGroupConnection = {
|
export type SitePageGroupConnection = {
|
||||||
totalCount: Scalars['Int'];
|
totalCount: Scalars['Int'];
|
||||||
|
@ -2178,15 +2186,15 @@ export type SitePageFilterInput = {
|
||||||
internalComponentName?: Maybe<StringQueryOperatorInput>;
|
internalComponentName?: Maybe<StringQueryOperatorInput>;
|
||||||
componentChunkName?: Maybe<StringQueryOperatorInput>;
|
componentChunkName?: Maybe<StringQueryOperatorInput>;
|
||||||
matchPath?: Maybe<StringQueryOperatorInput>;
|
matchPath?: Maybe<StringQueryOperatorInput>;
|
||||||
|
isCreatedByStatefulCreatePages?: Maybe<BooleanQueryOperatorInput>;
|
||||||
|
pluginCreator?: Maybe<SitePluginFilterInput>;
|
||||||
|
pluginCreatorId?: Maybe<StringQueryOperatorInput>;
|
||||||
|
componentPath?: Maybe<StringQueryOperatorInput>;
|
||||||
id?: Maybe<StringQueryOperatorInput>;
|
id?: Maybe<StringQueryOperatorInput>;
|
||||||
parent?: Maybe<NodeFilterInput>;
|
parent?: Maybe<NodeFilterInput>;
|
||||||
children?: Maybe<NodeFilterListInput>;
|
children?: Maybe<NodeFilterListInput>;
|
||||||
internal?: Maybe<InternalFilterInput>;
|
internal?: Maybe<InternalFilterInput>;
|
||||||
isCreatedByStatefulCreatePages?: Maybe<BooleanQueryOperatorInput>;
|
|
||||||
context?: Maybe<SitePageContextFilterInput>;
|
context?: Maybe<SitePageContextFilterInput>;
|
||||||
pluginCreator?: Maybe<SitePluginFilterInput>;
|
|
||||||
pluginCreatorId?: Maybe<StringQueryOperatorInput>;
|
|
||||||
componentPath?: Maybe<StringQueryOperatorInput>;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export type SitePageSortInput = {
|
export type SitePageSortInput = {
|
||||||
|
|
|
@ -10,8 +10,7 @@ const NavHeader: React.FC<{}> = (props) => {
|
||||||
{title: "Contact", url: "/contact"}
|
{title: "Contact", url: "/contact"}
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
{title: "Twitter", url: "https://twitter.com/rikksolo"},
|
{title: "Twitter", url: "https://twitter.com/rikberkelder"},
|
||||||
{title: "GitLab", url: "https://gitlab.riksolo.com/riksolo"}
|
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
{title: "RBLicht", url: "https://rblicht.nl"},
|
{title: "RBLicht", url: "https://rblicht.nl"},
|
||||||
|
|
|
@ -14,7 +14,8 @@ const Home: React.FC<{}> = () => {
|
||||||
<ul className="list-dash">
|
<ul className="list-dash">
|
||||||
<li>TypeScript, GraphQL</li>
|
<li>TypeScript, GraphQL</li>
|
||||||
<li>React, React Native, Angular, Node, Gatsby, Electron</li>
|
<li>React, React Native, Angular, Node, Gatsby, Electron</li>
|
||||||
<li>Docker, Heroku, GitLab CI</li>
|
<li>Sass/SCSS, Tailwind, Bootstrap</li>
|
||||||
|
<li>Git, Docker, Heroku, GitLab CI, GitHub Actions</li>
|
||||||
<li>Linux</li>
|
<li>Linux</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
@ -22,9 +23,10 @@ const Home: React.FC<{}> = () => {
|
||||||
<span className="text-sm text-gray-400 font-bold mt-3 lg:mt-1 block">Lighting & AV</span>
|
<span className="text-sm text-gray-400 font-bold mt-3 lg:mt-1 block">Lighting & AV</span>
|
||||||
<ul className="list-dash">
|
<ul className="list-dash">
|
||||||
<li>GrandMA2/3, Hog4, Avolites Titan, Obsidian ONYX</li>
|
<li>GrandMA2/3, Hog4, Avolites Titan, Obsidian ONYX</li>
|
||||||
<li>Capture, WYSIWYG, Vectorworks, MA3D</li>
|
<li>Capture, Vectorworks, WYSIWYG, MA3D</li>
|
||||||
<li>ATEM, VMix, Arkaos, Resolume</li>
|
<li>ATEM, VMix, Arkaos, Resolume, OBS, Datavideo, Resolve</li>
|
||||||
<li>Timecode, Remote Production, System Integration</li>
|
<li>Timecode, Remote Production, System Integration</li>
|
||||||
|
<li>M/X32, A&H Qu-series, Reaper, Ardour/Mixbus, Nuendo</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -33,7 +33,7 @@ a {
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
@apply mb-2.5;
|
@apply mb-3;
|
||||||
}
|
}
|
||||||
|
|
||||||
table {
|
table {
|
||||||
|
|
Loading…
Reference in New Issue