Initial Upload
This commit is contained in:
41
.gitea/neocities.yml
Normal file
41
.gitea/neocities.yml
Normal file
@@ -0,0 +1,41 @@
|
||||
name: Deploy to neocities
|
||||
|
||||
# only run on changes to main. Use main or master depending on whatever your default branch is called.
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
concurrency: # prevent concurrent deploys doing strange things
|
||||
group: deploy-to-neocities
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
# The checkout step copies your repo into the action runner. Important!
|
||||
- uses: actions/checkout@v4
|
||||
# Set up any tools and build steps here
|
||||
# This example uses a Node.js toolchain to build a site
|
||||
# If you don't need Node.js to build your site, you can omit this.
|
||||
- name: Use Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: lts/*
|
||||
# If you have a different build process, replace this with your own build steps
|
||||
- name: Install deps and build
|
||||
run: |
|
||||
npm i
|
||||
npm run build
|
||||
# When the dist_dir is ready, deploy it to neocities
|
||||
# Here we deploy the folder named `public`
|
||||
- name: Deploy to neocities
|
||||
uses: bcomnes/deploy-to-neocities@v3
|
||||
with:
|
||||
api_key: ${{ secrets.NEOCITIES_API_TOKEN }}
|
||||
cleanup: false
|
||||
neocities_supporter: false # set this to true if you have a supporter account and want to bypass unsuported files filter.
|
||||
preview_before_deploy: true # print a deployment plan prior to waiting for files to upload.
|
||||
dist_dir: public
|
||||
9
css/style.css
Normal file
9
css/style.css
Normal file
@@ -0,0 +1,9 @@
|
||||
/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
|
||||
HTML content. To learn how to do something, just try searching Google for questions like
|
||||
"how to change link color." */
|
||||
|
||||
body {
|
||||
background-color: white;
|
||||
color: black;
|
||||
font-family: Verdana;
|
||||
}
|
||||
BIN
img/autisticats-logo.png
Normal file
BIN
img/autisticats-logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 275 KiB |
BIN
img/neocities.png
Normal file
BIN
img/neocities.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 13 KiB |
81
index.html
Normal file
81
index.html
Normal file
@@ -0,0 +1,81 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Autisticats</title>
|
||||
<style>
|
||||
/* Color palette matched to the Autisticats icon */
|
||||
body {
|
||||
background-color: #241c39; /* Dark indigo/purple from the icon background */
|
||||
color: #fdfdfd;
|
||||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
height: 100vh;
|
||||
margin: 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* Circular crop and styling for the server icon */
|
||||
.server-icon {
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
border-radius: 50%; /* This makes it a perfect circle! */
|
||||
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
|
||||
margin-bottom: 20px;
|
||||
/* Optional: Add a subtle border matching the moon */
|
||||
border: 3px solid #aaaaaa;
|
||||
}
|
||||
|
||||
/* Rainbow gradient text matching the infinity mask */
|
||||
h1 {
|
||||
font-size: 2.5em;
|
||||
margin: 0 0 10px 0;
|
||||
background: linear-gradient(90deg, #df73ff, #8394ff, #62e8bd, #fdfb74, #ffa07a);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
text-shadow: 0px 2px 10px rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
|
||||
.status-box {
|
||||
max-width: 600px;
|
||||
padding: 20px 40px;
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
border-radius: 12px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 1.1em;
|
||||
line-height: 1.6;
|
||||
color: #dcdcdc;
|
||||
}
|
||||
|
||||
.footer {
|
||||
margin-top: 40px;
|
||||
font-size: 0.85em;
|
||||
color: #888888;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<img src="/img/autisticats-logo.png" alt="Autisticats Logo" class="server-icon">
|
||||
|
||||
<h1>Autisticats</h1>
|
||||
|
||||
<div class="status-box">
|
||||
<p><strong></strong></p>
|
||||
<p>We are currently building a new space for the community. Please bear with us while we set up the infrastructure and get things organized.</p>
|
||||
<p>Stay tuned for further updates!</p>
|
||||
</div>
|
||||
|
||||
<div class="footer">
|
||||
Autisticats Community Hub
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
13
not_found.html
Normal file
13
not_found.html
Normal file
@@ -0,0 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Not Found</title>
|
||||
<link href="/css/style.css" rel="stylesheet" type="text/css" media="all">
|
||||
</head>
|
||||
<body>
|
||||
<h1>Page Not Found</h1>
|
||||
<p>The requested page was not found.</p>
|
||||
</body>
|
||||
</html>
|
||||
48
robots.txt
Normal file
48
robots.txt
Normal file
@@ -0,0 +1,48 @@
|
||||
# This file tells search engines and bots what they are allowed to see on your site.
|
||||
|
||||
# This is the default rule, which allows search engines to crawl your site (recommended).
|
||||
User-agent: *
|
||||
Allow: /
|
||||
|
||||
# If you do not want AI bots to crawl your site, remove the # from the following lines:
|
||||
#User-agent: AI2Bot
|
||||
#User-agent: Ai2Bot-Dolma
|
||||
#User-agent: Amazonbot
|
||||
#User-agent: anthropic-ai
|
||||
#User-agent: Applebot-Extended
|
||||
#User-agent: Bytespider
|
||||
#User-agent: CCBot
|
||||
#User-agent: ChatGPT-User
|
||||
#User-agent: Claude-Web
|
||||
#User-agent: ClaudeBot
|
||||
#User-agent: cohere-ai
|
||||
#User-agent: Diffbot
|
||||
#User-agent: DuckAssistBot
|
||||
#User-agent: FacebookBot
|
||||
#User-agent: FriendlyCrawler
|
||||
#User-agent: Google-Extended
|
||||
#User-agent: GoogleOther
|
||||
#User-agent: GoogleOther-Image
|
||||
#User-agent: GoogleOther-Video
|
||||
#User-agent: GPTBot
|
||||
#User-agent: iaskspider/2.0
|
||||
#User-agent: ICC-Crawler
|
||||
#User-agent: ImagesiftBot
|
||||
#User-agent: img2dataset
|
||||
#User-agent: ISSCyberRiskCrawler
|
||||
#User-agent: Kangaroo Bot
|
||||
#User-agent: Meta-ExternalAgent
|
||||
#User-agent: Meta-ExternalFetcher
|
||||
#User-agent: OAI-SearchBot
|
||||
#User-agent: omgili
|
||||
#User-agent: omgilibot
|
||||
#User-agent: PanguBot
|
||||
#User-agent: PerplexityBot
|
||||
#User-agent: PetalBot
|
||||
#User-agent: Scrapy
|
||||
#User-agent: Sidetrade indexer bot
|
||||
#User-agent: Timpibot
|
||||
#User-agent: VelenPublicWebCrawler
|
||||
#User-agent: Webzio-Extended
|
||||
#User-agent: YouBot
|
||||
#Disallow: /
|
||||
Reference in New Issue
Block a user