@nestbotics/nct_frontend_common_components
Version:
A collection of reusable React components with theme management and styling utilities
27 lines • 773 B
JavaScript
import { Box, Typography, useTheme } from "@mui/material";
import { tokens } from "../../theme/Theme";
import React from "react";
import { jsx as _jsx } from "react/jsx-runtime";
var Footer = function Footer() {
var theme = useTheme();
var colors = tokens(theme.palette.mode);
return /*#__PURE__*/_jsx(Box, {
sx: {
position: 'fixed',
bottom: 0,
width: '100%',
height: '32px',
backgroundColor: '#200f30eb',
color: 'white',
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
boxShadow: '0 -4px 8px rgba(0, 0, 0, 0.2)'
},
children: /*#__PURE__*/_jsx(Typography, {
variant: "body1",
children: "\xA9 2025 NESTBIZ. All rights reserved."
})
});
};
export default Footer;