mirror of
https://github.com/shadoll/sLogos.git
synced 2025-12-20 07:31:01 +00:00
- Add Rollup configuration for building and serving the application. - Implement logo scanning script to generate logos.json from logo files. - Create main App component to manage logo display and search functionality. - Develop LogoGrid and LogoList components for different viewing modes. - Add LogoModal component for logo preview with details. - Implement URL copying and logo downloading features. - Style components for improved user experience and responsiveness.
15 lines
358 B
HTML
15 lines
358 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Logo Gallery</title>
|
|
<link rel="stylesheet" href="global.css">
|
|
<link rel="stylesheet" href="build/bundle.css">
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script src="build/bundle.js"></script>
|
|
</body>
|
|
</html>
|