Skip to content

Commit a9a3fb7

Browse files
feat: added oracle solution page (#52)
1 parent 3ed5168 commit a9a3fb7

File tree

4 files changed

+54
-1
lines changed

4 files changed

+54
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"web-vitals": "^2.1.0"
2121
},
2222
"scripts": {
23-
"start": "set PORT=8000 && react-scripts start",
23+
"start": "set PORT=8080 && react-scripts start",
2424
"build": "react-scripts build",
2525
"gen-assets": "rimraf static-assets && mkdir -p static-assets && cp build/static/js/*.js static-assets/main-v1.js",
2626
"test": "react-scripts test",

src/components/nav/DrawerNav.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,9 @@ const DrawerNav = ({ isDrawerOpen }: Props) => {
9090
<SubLink href="https://traefik.io/solutions/nutanix-and-traefik/">
9191
Traefik & Nutanix <Badge>New!</Badge>
9292
</SubLink>
93+
<SubLink href="https://traefik.io/solutions/oracle-and-traefik/">
94+
Traefik & Oracle <Badge>New!</Badge>
95+
</SubLink>
9396
</div>
9497
</div>
9598

src/components/nav/MainNav.tsx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ import { ReactComponent as HubIcon } from '../../images/menu_icons_traefik_hub.s
3535
import { ReactComponent as WafIcon } from '../../images/menu_icons_waf.svg'
3636
import { ReactComponent as HashicorpIcon } from '../../images/menu_icons_hashicorp.svg'
3737
import { ReactComponent as NutanixIcon } from '../../images/menu_icons_nutanix.svg'
38+
import { ReactComponent as OracleIcon } from '../../images/menu_icons_oracle.svg'
3839
import { ReactComponent as AiGatewayIcon } from '../../images/menu_icons_ai_gateway.svg'
3940
import PostCard from './PostCard'
4041
import NavHeader from './NavHeader'
@@ -250,6 +251,14 @@ const MainNav = () => {
250251
icon: <NutanixIcon />,
251252
badge: 'New!',
252253
},
254+
{
255+
title: 'Traefik & Oracle',
256+
url: 'https://traefik.io/solutions/oracle-and-traefik/',
257+
external: true,
258+
description: 'A comprehensive and powerful API Gateway for HashiCorp stack.',
259+
icon: <OracleIcon />,
260+
badge: 'New!',
261+
},
253262
]}
254263
/>
255264
</Grid>

src/images/menu_icons_oracle.svg

Lines changed: 41 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)