- Created home.css with comprehensive styles for the home page layout, including typography, buttons, and responsive design adjustments. - Created landing.css to style the landing page, focusing on typography, layout, and responsive behavior for various screen sizes.
24 lines
433 B
TypeScript
24 lines
433 B
TypeScript
// Generated by `bun init`
|
|
|
|
declare module "*.svg" {
|
|
/**
|
|
* A path to the SVG file
|
|
*/
|
|
const path: `${string}.svg`;
|
|
export = path;
|
|
}
|
|
|
|
declare module "*.css" {}
|
|
declare module "*.png" {
|
|
const path: string;
|
|
export default path;
|
|
}
|
|
|
|
declare module "*.module.css" {
|
|
/**
|
|
* A record of class names to their corresponding CSS module classes
|
|
*/
|
|
const classes: { readonly [key: string]: string };
|
|
export = classes;
|
|
}
|