#
vincentlu
2026-01-10 1bc33546a044cbc84dd9595c19dbcd9a4e309fc9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import * as React from 'react';
import { SVGProps } from 'react';
import { useTheme } from '@mui/material/styles';
import {
    Typography
} from '@mui/material';
 
const Logo = (props) => {
    const theme = useTheme();
    return (
        // <Typography variant='h6'>Vincent</Typography>
        <div style={{
            fontFamily: 'Bebas Neue',
            fontSize: '26px',
            fontWeight: 'bold',
            letterSpacing: '2px',
            textShadow: '1px 1px 2px rgba(0, 0, 0, 0.2)',
            transform: 'skew(-10deg)',
        }}>
            Vincent
        </div>
    );
};
 
export default Logo;