Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
12 changes: 10 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,17 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>landing</title>
<title>dfsync — TypeScript HTTP client for service-to-service communication</title>
<meta
name="description"
content="A lightweight TypeScript HTTP client with sensible defaults for service-to-service communication across microservices, internal APIs, and integrations."
/>
<meta property="og:title" content="dfsync" />
<meta property="og:description" content="Reliable HTTP communication for modern services." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://dfsyncjs.github.io/" />
</head>
<body>
<div id="root"></div>
Expand Down
1 change: 0 additions & 1 deletion public/CNAME

This file was deleted.

7 changes: 7 additions & 0 deletions public/assets/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions public/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion public/vite.svg

This file was deleted.

31 changes: 26 additions & 5 deletions src/components/Brand/Brand.tsx
Original file line number Diff line number Diff line change
@@ -1,18 +1,39 @@
import { Typography } from '@mui/material';
import { Typography, Box } from '@mui/material';
import { Link as RouterLink } from 'react-router-dom';

export const Brand = () => {
return (
<Typography
<Box
component={RouterLink}
to="/"
sx={{
display: 'flex',
alignItems: 'center',
gap: 1,
textDecoration: 'none',
color: 'inherit',
fontWeight: 700,
}}
>
dfsync
</Typography>
<Box
component="img"
src="/assets/logo.svg"
alt="dfsync"
sx={{
width: 28,
height: 28,
borderRadius: '4px',
backgroundColor: '#ffffff',
padding: '2px',
border: '1px solid transparent',
borderColor: 'divider',
}}
/>
<Typography
variant="h6"
sx={{ display: 'flex', textDecoration: 'none', color: 'inherit', fontWeight: 700 }}
>
dfsync
</Typography>
</Box>
);
};
2 changes: 1 addition & 1 deletion src/components/Footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const Footer = () => {
alignItems={{ xs: 'flex-start', sm: 'center' }}
>
<Typography variant="body2" color="text.secondary">
© {new Date().getFullYear()} dfsync.io
© {new Date().getFullYear()} dfsync
</Typography>

<Stack direction="row" spacing={2}>
Expand Down