#
vincentlu
2025-05-13 ebd2f4397a92c6a5096de1b86d59154363344720
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;