Skip to content

Commit

Permalink
Couple more 'NASA' references, fix title
Browse files Browse the repository at this point in the history
  • Loading branch information
thostetler committed Jul 24, 2024
1 parent fe5fa02 commit d809d9c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion src/components/Layout/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import { LandingTabsStatic } from '@/components';
import { Notification } from '@/components/Notification';
import Head from 'next/head';
import { Favicons } from '@/components/Favicons/Favicons';
import { BRAND_NAME_FULL } from '@/config';

const LandingTabs = dynamic(() => import('@/components/LandingTabs/LandingTabs').then((mod) => mod.LandingTabs), {
ssr: false,
Expand All @@ -26,7 +27,7 @@ export const Layout: FC = ({ children }) => {
return (
<Flex direction="column">
<Head>
<title>Science Explorer</title>
<title>{`${BRAND_NAME_FULL}`}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="charset" content="utf-8" />
<Favicons />
Expand Down
2 changes: 1 addition & 1 deletion src/components/Orcid/WorksTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const WorksTable = () => {
</Heading>
<Text>
<SimpleLink href="/orcid-instructions" newTab display="inline">
Learn about using ORCiD with NASA SciX
Learn about using ORCiD with SciX
</SimpleLink>
</Text>
<Text>Claims take up to 24 hours to be indexed in SciX</Text>
Expand Down
4 changes: 2 additions & 2 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,8 @@ const Carousel = () => {
quality={90}
/>
<Text fontSize="xl">
NASA SciX covers and unifies the fields of Earth Science, Planetary Science, Astrophysics, and
Heliophysics. It will also cover NASA funded research in Biological and Physical Sciences.
SciX covers and unifies the fields of Earth Science, Planetary Science, Astrophysics, and Heliophysics.
It will also cover NASA funded research in Biological and Physical Sciences.
</Text>
</Stack>
),
Expand Down

0 comments on commit d809d9c

Please sign in to comment.