Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update page title and meta tags for Camino Application Suite #234

Merged
merged 4 commits into from
Nov 14, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Camino Application Suite
# Camino Suite

This app uses Module Federation to combine three different applications with different frameworks into a single, cohesive application. The three applications are:

Expand Down
7 changes: 3 additions & 4 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
name="description"
content="Explore Camino Suite for comprehensive travel solutions by Chain4Travel. Discover more about our services and how we're revolutionizing travel."
/>
<title>Camino Suite Application</title>
<title>Camino Suite</title>

<meta property="og:image" content="/preview.jpg" />
<meta
property="og:title"
content="Camino Suite Camino Suite Application: Your Gateway to Revolutionary Travel"
content="Camino Suite: Your Gateway to Revolutionary Travel"
/>
<meta
property="og:description"
Expand All @@ -33,8 +33,7 @@
content="Camino Suite for everything Camino by Chain4Travel."
/>
<meta name="twitter:image" content="/preview.jpg" />
<meta name="twitter:image:alt" content="Camino Suite Application" />

<meta name="twitter:image:alt" content="Camino Suite" />
<link rel="preconnect" href="https://cdn.jsdelivr.net" />
<link
rel="stylesheet"
Expand Down
4 changes: 2 additions & 2 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"short_name": "Camino Suite Application",
"name": "Camino Suite Application",
"short_name": "Camino Suite",
"name": "Camino Suite",
"icons": [
{
"src": "favicon.ico",
Expand Down
10 changes: 5 additions & 5 deletions src/views/landing/LandingPage.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { Box, Grid, Typography } from '@mui/material'
import { changeActiveApp, getAllApps } from '../../redux/slices/app-config'

import LandingPageAppWidget from './LandingPageAppWidget'
import React from 'react'
import { getActiveNetwork } from '../../redux/slices/network'
import { useAppSelector } from '../../hooks/reduxHooks'
import { useDispatch } from 'react-redux'
import { useNavigate } from 'react-router'
import { useAppSelector } from '../../hooks/reduxHooks'
import { getActiveNetwork } from '../../redux/slices/network'
import LandingPageAppWidget from './LandingPageAppWidget'

export default function LandingPage() {
const activeNetwork = useAppSelector(getActiveNetwork)
Expand All @@ -28,10 +28,10 @@
<Box sx={{ py: 4 }}>
<Box>
<Typography textAlign="center" variant="h2">
Camino Application Suite
Camino Suite
</Typography>
<Typography textAlign={'center'}>
The Camino Application Suite unifies all network wide applications of the Camino
The Camino Suite unifies all network wide applications of the Camino

Check warning on line 34 in src/views/landing/LandingPage.tsx

View workflow job for this annotation

GitHub Actions / yarn-build

Delete `⏎···················`
Network
</Typography>
</Box>
Expand Down
Loading