Skip to content

Commit

Permalink
Home page tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
Ray Myers committed Apr 13, 2024
1 parent cd173c8 commit 25586e1
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import type * as Preset from '@docusaurus/preset-classic';

const config: Config = {
title: 'nopilot.dev',
tagline: 'Shape the future of software in the open',
tagline: 'Your front row seat to the rise of Autonomous DevTools',
favicon: 'img/favicon.ico',

// Set the production url of your site here
Expand Down
9 changes: 8 additions & 1 deletion src/components/HomepageFeatures/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,13 @@ export default function HomepageFeatures(): JSX.Element {
return (
<section className={styles.features}>
<div className="container">
{/* <div className="row">
<div className={clsx('col col--12')}>
<p>
We are witnessing the rise of Autonomous DevTools. Help ensure that change is for the better!
</p>
</div>
</div> */}
<div className="row">
{/* {FeatureList.map((props, idx) => (
<Feature key={idx} {...props} />
Expand All @@ -68,7 +75,7 @@ export default function HomepageFeatures(): JSX.Element {
{/* <Svg className={styles.featureSvg} role="img" /> */}
</div>
<div className="padding-horiz--md" style={{ fontSize: "1.1em" }}>
<Heading as="h3" className="text--left">Why we are here</Heading>
<Heading as="h3" className="text--left">Mission: Shape the future of software in the open</Heading>
<p>
We believe it is in the best interest of the software industry, which the world depends on, to deem certain types of tools as essential infrastructure.
</p>
Expand Down
12 changes: 11 additions & 1 deletion src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/* You can override the default Infima variables here. */
:root {
--ifm-color-primary: #6b83e5;
--ifm-color-primary-dark: #4161d1;
--ifm-color-primary-dark: hsl(227, 61%, 54%);
--ifm-color-primary-darker: #3051ba;
--ifm-color-primary-darkest: #2041a3;
--ifm-color-primary-light: #6381f1;
Expand All @@ -23,9 +23,19 @@
--ifm-font-family-base: 'Manrope', san-serif;
}

.hero {
/* https://cssgradient.io/ */
/* background-image: url("/static/img/blue-min-ai-logo.svg"); */
background: var(--ifm-color-primary);
background: linear-gradient(90deg, var(--ifm-color-primary-darkest) 5%, var(--ifm-color-primary-light) 50%, var(--ifm-color-primary-darkest) 95%);
}

.hero__title {
font-weight: 800;
}
p.hero__subtitle {
margin-bottom: 0.5rem;
}

.hero.hero--primary {
padding: 0.5rem 0;
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function HomepageHeader() {
{/* <Heading as="h1" className="hero__title">
{siteConfig.title}
</Heading> */}
<img src="/img/nopilot-logo-simple.png" alt="nopilot.dev" style={{width: '350px', height: '350px'}} />
<img src="/img/nopilot-logo-simple.png" alt="nopilot.dev" style={{width: '300px', height: '300px'}} />
<p className="hero__subtitle">{siteConfig.tagline}</p>
{/* <div className={styles.buttons}>
<Link
Expand Down

0 comments on commit 25586e1

Please sign in to comment.