Init commit

This commit is contained in:
2025-08-19 18:09:38 -05:00
parent 5a4baf3372
commit 86243e97b2
7 changed files with 1759 additions and 0 deletions

28
public/css/style.css Normal file
View File

@@ -0,0 +1,28 @@
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f4f4f9;
color: #333;
}
.main-container {
text-align: center;
padding: 2rem;
background-color: white;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.social-links a {
color: #007bff;
text-decoration: none;
margin: 0 0.5rem;
}
.social-links a:hover {
text-decoration: underline;
}

16
public/index.html Normal file
View File

@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Your Name's Personal Site</title>
<link href="/css/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="app">
<p>Loading ClojureScript...</p>
</div>
<script src="/js/main.js" type="text/javascript"></script>
</body>
</html>