Skip to content

Commit 02d054c

Browse files
Merge pull request #223 from neuroglia-io/fix-222-sdk-runtime-cta
Add SDK/Runtime CTA
2 parents 86a7501 + beaccbc commit 02d054c

File tree

4 files changed

+30
-2
lines changed

4 files changed

+30
-2
lines changed

src/components/HtmlHead.astro

+3
Original file line numberDiff line numberDiff line change
@@ -70,3 +70,6 @@ const pageTitle = `${DEFAULT_TITLE}${title ? ' - ' + title : ''}`;
7070
<meta property="twitter:title" content={pageTitle} />
7171
<meta property="twitter:description" content={description} />
7272
<meta property="twitter:image" content={new URL(image, Astro.url)} />
73+
74+
<!-- Sitemap -->
75+
<link rel="sitemap" href="/sitemap-index.xml" />

src/consts.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
export const DEFAULT_TITLE = 'Serverless Workflow';
22
export const DEFAULT_DESC = `Serverless Workflow presents a vendor-neutral, open-source, and entirely community-driven ecosystem tailored for defining and executing DSL-based workflows in the realm of Serverless technology.`;
33

4-
export const GITHUB_LINK = 'https://github.com/serverlessworkflow/specification/';
4+
export const GITHUB_ORG = 'https://github.com/serverlessworkflow/';
5+
export const GITHUB_LINK = GITHUB_ORG + 'specification/';
56
export const SLACK_LINK = 'https://slack.cncf.io/';
67
export const X_TWITTER_LINK = 'https://x.com/cncfworkflow';
78
export const LINKEDIN_LINK = 'https://www.linkedin.com/company/serverless-workflow/posts';

src/pages/index.astro

+12-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
import { GITHUB_LINK } from '../consts';
2+
import { GITHUB_LINK, GITHUB_ORG } from '../consts';
33
import Layout from '../layouts/Layout.astro';
44
import Card from '../components/Card.astro';
55
import Section from '../components/Section.astro';
@@ -20,6 +20,17 @@ import { Code } from 'astro:components';
2020
<p class="pt-6">Serverless Workflow presents a vendor-neutral, open-source, and entirely community-driven ecosystem tailored for defining and executing DSL-based workflows in the realm of Serverless technology.</p>
2121
<p class="py-6">The current version is <span class="font-bold">1.0.0-alpha5</span>, get the JSON Schema here: <a class="link link-accent" href="/schemas/1.0.0-alpha5/workflow.yaml" target="_blank" rel="noopener">YAML</a> or <a class="link link-accent" href="/schemas/1.0.0-alpha5/workflow.json" target="_blank" rel="noopener">JSON</a></p>
2222
<a class="btn btn-accent border-accent bg-base-100 text-accent" href={GITHUB_LINK + 'blob/main/README.md'} target="_blank" rel="noopener">Learn More</a>
23+
<div class="dropdown dropdown-hover">
24+
<div tabindex="0" role="button" class="btn btn-primary border-primary bg-base-100 text-primary">SDK</div>
25+
<ul tabindex="0" class="dropdown-content menu bg-base-100 rounded-box z-[1] w-52 p-2 shadow">
26+
<li><a href={GITHUB_ORG + 'sdk-net'} target="_blank" rel="noopener">.NET</a></li>
27+
<li><a href={GITHUB_ORG + 'sdk-go'} target="_blank" rel="noopener">Go</a></li>
28+
<li><a href={GITHUB_ORG + 'sdk-java'} target="_blank" rel="noopener">Java</a></li>
29+
<li><a href={GITHUB_ORG + 'sdk-python'} target="_blank" rel="noopener">Python</a></li>
30+
<li><a href={GITHUB_ORG + 'sdk-typescript'} target="_blank" rel="noopener">TypeScript</a></li>
31+
</ul>
32+
</div>
33+
<a class="btn btn-secondary border-secondary bg-base-100 text-secondary" href={GITHUB_ORG + 'synapse'} target="_blank" rel="noopener">Runtime</a>
2334
</div>
2435
</div>
2536
</div>

src/pages/robots.txt.ts

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import type { APIRoute } from 'astro';
2+
3+
const getRobotsTxt = (sitemapURL: URL) => `
4+
User-agent: *
5+
Allow: /
6+
7+
Sitemap: ${sitemapURL.href}
8+
`;
9+
10+
export const GET: APIRoute = ({ site }) => {
11+
const sitemapURL = new URL('sitemap-index.xml', site);
12+
return new Response(getRobotsTxt(sitemapURL));
13+
};

0 commit comments

Comments
 (0)