Skip to content

Commit

Permalink
Merge branch 'cloud-landing'
Browse files Browse the repository at this point in the history
  • Loading branch information
mnapoli committed Jan 20, 2025
2 parents 6fbc3d0 + f279734 commit 831035e
Show file tree
Hide file tree
Showing 15 changed files with 4,060 additions and 29 deletions.
217 changes: 201 additions & 16 deletions website/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"@aws-sdk/client-cloudwatch": "^3.651.1",
"@docsearch/css": "^3.5.2",
"@docsearch/react": "^3.5.2",
"@headlessui/react": "^2.2.0",
"@heroicons/react": "^2.0.18",
"@octokit/graphql": "^7.0.1",
"next": "^14.2.22",
Expand Down
2 changes: 1 addition & 1 deletion website/src/components/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ const navigation = {
main: [
{ name: 'Home', href: '/' },
{ name: 'Documentation', href: '/docs/' },
{ name: 'Slack', href: 'https://bref.sh/slack' },
{ name: 'News', href: '/news/' },
{ name: 'Support', href: '/support' },
{ name: 'Bref Dashboard', href: 'https://dashboard.bref.sh/' },
{ name: 'Credits', href: '/credits' },
],
social: [
Expand Down
7 changes: 6 additions & 1 deletion website/src/components/home/intro.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const features = [
{
name: 'Simple.',
description:
'Instead of setting up and maintaining servers, define your application in a simple <code class="inline-code">serverless.yml</code> file. Then deploy to AWS with <code class="inline-code">serverless deploy</code>. Bref integrates with the <a href="https://www.serverless.com/framework" class="link">Serverless Framework</a> for a great developer experience.',
'Instead of setting up and maintaining servers, define your application in a simple <code class="inline-code">serverless.yml</code> file. Then deploy to AWS by running <code class="inline-code">serverless deploy</code>.',
icon: CloudArrowUpIcon,
},
{
Expand All @@ -17,6 +17,11 @@ const features = [
description: 'Instead of paying for servers that are idle most of the time, pay for the time the code is actually running. The AWS free tier even provides about 1 million free requests per month. Play with the <a href="/docs/serverless-costs" class="link">serverless costs calculator</a>.',
icon: BanknotesIcon,
},
{
name: 'Extensible.',
description: 'Bref uses standard CloudFormation under the hood: you can use everything AWS has to offer. If you are a cloud expert, Bref also works with AWS CDK, Terraform, and more.',
icon: BanknotesIcon,
},
]

export default function Intro() {
Expand Down
17 changes: 10 additions & 7 deletions website/src/pages/_meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"news": {
"title": "News",
"type": "page",
"display": "hidden",
"theme": {
"typesetting": "article"
}
Expand All @@ -25,12 +26,6 @@
"layout": "raw"
}
},
"dashboard": {
"title": "Dashboard",
"type": "page",
"href": "https://dashboard.bref.sh/",
"newWindow": true
},
"credits": {
"type": "page",
"title": "Credits",
Expand All @@ -40,7 +35,7 @@
},
"404": {
"type": "page",
"title": "Sentry integration for AWS Lambda",
"title": "404",
"display": "hidden",
"theme": {
"layout": "raw"
Expand All @@ -53,5 +48,13 @@
"theme": {
"layout": "raw"
}
},
"cloud": {
"type": "page",
"title": "Bref Cloud",
"display": "hidden",
"theme": {
"layout": "raw"
}
}
}
Loading

0 comments on commit 831035e

Please sign in to comment.