Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Changelog

All notable changes to this project will be documented here.

## [v0.1.0] - 2025-10-06

Initial docs-first release proposal.

- Rewrite README in a minimal, "void" tone while keeping safety and collaboration clear.
- Add a static `index.html` landing page (no JS, no build, accessible).
- Add this changelog to track releases.

Notes:

- No code-level integration is included yet—this repo is documentation + static page.
- After merge, we can publish GitHub release `v0.1.0` based on `main`.

## [v0.0.1] - 2025-10-03

- Establish collaboration with Charlie Labs AI (PR #2).

[v0.1.0]: https://github.com/CosmicJesterX/IFNOT/compare/v0.0.1...v0.1.0
[v0.0.1]: https://github.com/CosmicJesterX/IFNOT/commit/83515765659360e3c751e4a933dba19d03ef0229
56 changes: 49 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,56 @@
# IFNOT
The IFNOT fund

## Integration with Charlie Labs AI
_void-friendly. quiet on the surface. signal underneath._

This repository is connected with Charlie Labs AI, a Texas-based AI innovation company.
## What this is

**Website:** [www.charlielabs.ai](https://www.charlielabs.ai)
IFNOT is a small, public space for notes and experiments. It currently ships
documentation only and a minimal landing page.

**Location:** TEXAS "Linear"
## Charlie Labs AI collaboration

### About the Integration
We collaborate with Charlie Labs AI (Texas, USA) to explore and apply advanced AI
capabilities.

IFNOT is integrated with Charlie Labs AI to leverage advanced AI capabilities and collaborate on innovative solutions.
- Website: [charlielabs.ai](https://www.charlielabs.ai)

This repository contains no code‑level integration; it documents the collaboration
and how to work with it here.

## Release summary

See [CHANGELOG.md](./CHANGELOG.md). The current proposal is `v0.1.0` (docs +
minimal site). After this PR merges, we can cut a GitHub release.

<details>
<summary><strong>Details (owners, touchpoints, access)</strong></summary>

### Owners

- Maintainer: [@CosmicJesterX](https://github.com/CosmicJesterX)
- Charlie contact: hello@charlielabs.ai

### Touchpoints

- Request a review from `@CharlieHelps` on a PR to get a full review.
- Mention `@CharlieHelps` in PR/issue comments for plans, small fixes, or copy edits.

### Request access

Open an issue titled “Access request: IFNOT” with your handle, the role you
need (Read/Triage/Write), and a one‑line purpose.

### Privacy & safety

- Don’t share secrets in issues/PRs.
- Use “SAFETY FLAG:” at the start of a comment to pause a risky PR and discuss.

</details>

## Local preview

Open `index.html` directly in a browser—no build or server required.

---

_If not now—when._
138 changes: 138 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,138 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>IFNOT — void</title>
<meta
name="description"
content="IFNOT — a quiet surface for improbable ideas"
/>
<style>
:root {
--bg: #0b0c10;
--fg: #e6e6e6;
--muted: #9aa0a6;
--accent: #7f5af0;
--grid: rgba(255, 255, 255, 0.03);
}
html,
body {
height: 100%;
}
html {
box-sizing: border-box;
}
*,
*::before,
*::after {
box-sizing: inherit;
}
body {
margin: 0;
background: radial-gradient(
circle at 20% 10%,
rgba(127, 90, 240, 0.08),
transparent 40%
),
radial-gradient(
circle at 80% 90%,
rgba(127, 90, 240, 0.06),
transparent 40%
),
var(--bg);
color: var(--fg);
font:
16px/1.5 ui-monospace,
SFMono-Regular,
Menlo,
Monaco,
Consolas,
"Liberation Mono",
"Courier New",
monospace;
display: grid;
place-items: center;
}
main {
width: min(680px, 92vw);
padding: 3rem 2rem 2rem;
position: relative;
}
main::before {
content: "";
position: absolute;
inset: 0;
background-image: linear-gradient(var(--grid) 1px, transparent 1px),
linear-gradient(90deg, var(--grid) 1px, transparent 1px);
background-size: 20px 20px;
mask-image: radial-gradient(
ellipse at 50% 30%,
rgba(0, 0, 0, 0.7),
transparent 70%
);
pointer-events: none;
}
h1 {
margin: 0 0 0.25rem 0;
font-size: clamp(28px, 8vw, 64px);
letter-spacing: 0.02em;
}
p.tag {
margin: 0 0 2rem 0;
color: var(--muted);
letter-spacing: 0.06em;
text-transform: lowercase;
}
section {
margin: 1.5rem 0;
}
a {
color: var(--accent);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.cta {
margin-top: 1.25rem;
display: inline-block;
padding: 0.5rem 0.8rem;
border: 1px solid rgba(127, 90, 240, 0.4);
border-radius: 6px;
}
footer {
margin-top: 2.5rem;
color: var(--muted);
font-size: 0.9rem;
}
</style>
</head>
<body>
<main>
<h1>IFNOT</h1>
<p class="tag">void-friendly. quiet on the surface. signal underneath.</p>

<section>
<p>Public notes and experiments. Minimal by design.</p>
<p>
Collaboration:
<a href="https://www.charlielabs.ai" target="_blank" rel="noopener"
>Charlie Labs AI</a
>
<span aria-hidden="true"> · </span>
<a href="./README.md">README</a>
<span aria-hidden="true"> · </span>
<a href="./CHANGELOG.md">Changelog</a>
</p>
<a class="cta" href="https://github.com/CosmicJesterX/IFNOT"
>View on GitHub</a
>
</section>

<footer>
<span>© IFNOT</span>
</footer>
</main>
</body>
</html>