Nano Dog ($NANODOG)
:root {
--orange: #f7931a;
--orange-light: #ffb84d;
--black: #080808;
--card: #121212;
--white: #ffffff;
--muted: #a4a4a4;
--line: rgba(255,255,255,.12);
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth;
}
body {
min-height: 100vh;
color: var(--white);
background:
radial-gradient(circle at 80% 10%, rgba(247,147,26,.15), transparent 28%),
var(--black);
font-family: Arial, Helvetica, sans-serif;
}
a {
color: inherit;
text-decoration: none;
}
button {
border: 0;
cursor: pointer;
font: inherit;
}
.wrap {
width: min(1080px, 90%);
margin: auto;
}
header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
padding: 20px 0;
border-bottom: 1px solid var(--line);
}
.brand {
display: flex;
align-items: center;
gap: 10px;
font-weight: 900;
letter-spacing: -.04em;
}
.brand img {
width: 44px;
height: 44px;
padding: 4px;
border: 1px solid var(--orange);
border-radius: 14px;
background: #000;
object-fit: cover;
}
.brand small {
display: block;
margin-top: 3px;
color: var(--orange);
font-size: 10px;
letter-spacing: .12em;
}
.x-button,
.button {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 46px;
padding: 0 18px;
border-radius: 999px;
font-size: 13px;
font-weight: 800;
transition: .2s ease;
}
.x-button,
.button-orange {
color: #111;
background: var(--orange);
}
.x-button:hover,
.button-orange:hover {
background: var(--orange-light);
transform: translateY(-2px);
}
.button-dark {
color: var(--white);
border: 1px solid var(--line);
background: #161616;
}
.button-dark:hover {
border-color: var(--orange);
background: #20180f;
}
.hero {
display: grid;
grid-template-columns: 1fr 400px;
align-items: center;
gap: 70px;
min-height: 650px;
padding: 80px 0;
}
.tag {
display: inline-block;
margin-bottom: 20px;
color: var(--orange);
font-size: 11px;
font-weight: 900;
letter-spacing: .15em;
}
h1 {
max-width: 650px;
font-size: clamp(54px, 8vw, 96px);
font-weight: 950;
letter-spacing: -.09em;
line-height: .9;
}
h1 span {
color: var(--orange);
}
.hero p {
max-width: 520px;
margin-top: 24px;
color: var(--muted);
font-size: 18px;
line-height: 1.6;
}
.buttons {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-top: 30px;
}
.ca-box {
max-width: 590px;
margin-top: 25px;
padding: 16px;
border: 1px solid var(--line);
border-radius: 16px;
background: var(--card);
}
.ca-title {
margin-bottom: 9px;
color: var(--orange);
font-size: 10px;
font-weight: 900;
letter-spacing: .14em;
}
.ca-line {
display: flex;
align-items: center;
gap: 12px;
}
.ca-line code {
min-width: 0;
flex: 1;
color: #eee;
font-family: monospace;
font-size: 12px;
overflow-wrap: anywhere;
}
.copy {
flex: 0 0 auto;
padding: 9px 13px;
border-radius: 999px;
color: #111;
background: var(--orange);
font-size: 11px;
font-weight: 900;
}
.copy:hover {
background: var(--orange-light);
}
#status {
min-height: 18px;
margin-top: 8px;
color: var(--orange);
font-size: 11px;
}
.dog {
display: flex;
align-items: center;
justify-content: center;
width: 390px;
height: 390px;
overflow: hidden;
border: 1px solid rgba(247,147,26,.65);
border-radius: 30px;
background: #000;
box-shadow: 0 0 70px rgba(247,147,26,.18);
transform: rotate(2deg);
}
.dog img {
width: 100%;
height: 100%;
object-fit: cover;
}
.note {
margin-top: 16px !important;
color: #686868 !important;
font-size: 11px !important;
}
.bar {
padding: 14px 0;
overflow: hidden;
color: #111;
background: var(--orange);
font-size: 12px;
font-weight: 900;
letter-spacing: .14em;
text-align: center;
text-transform: uppercase;
}
.section {
padding: 95px 0;
border-bottom: 1px solid var(--line);
}
.section-label {
margin-bottom: 12px;
color: var(--orange);
font-size: 11px;
font-weight: 900;
letter-spacing: .15em;
}
h2 {
margin-bottom: 17px;
font-size: clamp(36px, 6vw, 62px);
letter-spacing: -.07em;
line-height: .95;
}
.section-intro {
max-width: 570px;
color: var(--muted);
font-size: 17px;
line-height: 1.65;
}
.cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 15px;
margin-top: 35px;
}
.card {
min-height: 185px;
padding: 25px;
border: 1px solid var(--line);
border-radius: 20px;
background: var(--card);
}
.card-number {
color: var(--orange);
font-size: 12px;
font-weight: 900;
}
.card h3 {
margin: 28px 0 10px;
font-size: 22px;
letter-spacing: -.04em;
}
.card p {
color: var(--muted);
font-size: 14px;
line-height: 1.55;
}
.facts {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 14px;
max-width: 800px;
margin-top: 32px;
}
.fact {
padding: 19px;
border-radius: 15px;
background: var(--card);
}
.fact strong {
display: block;
margin-bottom: 7px;
color: var(--orange);
font-size: 11px;
letter-spacing: .1em;
text-transform: uppercase;
}
.fact span {
color: #eee;
font-family: monospace;
font-size: 13px;
overflow-wrap: anywhere;
}
.join {
margin-top: 32px;
padding: 35px;
border: 1px solid rgba(247,147,26,.5);
border-radius: 24px;
background:
radial-gradient(circle at 90% 10%, rgba(247,147,26,.22), transparent 35%),
var(--card);
}
.join p {
max-width: 580px;
color: var(--muted);
line-height: 1.6;
}
footer {
display: flex;
justify-content: space-between;
gap: 20px;
padding: 26px 0 35px;
color: #777;
font-size: 12px;
}
footer strong {
color: var(--orange);
}
@media (max-width: 800px) {
.hero {
grid-template-columns: 1fr;
gap: 45px;
padding: 65px 0;
}
.hero-copy {
text-align: center;
}
.hero p,
.note {
margin-right: auto;
margin-left: auto;
}
.buttons {
justify-content: center;
}
.ca-box {
margin-right: auto;
margin-left: auto;
text-align: left;
}
.dog {
width: min(390px, 100%);
height: min(390px, 100vw);
margin: auto;
}
.cards {
grid-template-columns: 1fr;
}
.facts {
grid-template-columns: 1fr;
}
footer {
flex-direction: column;
}
}
@media (max-width: 430px) {
header {
align-items: flex-start;
}
.x-button {
min-height: 40px;
padding: 0 13px;
font-size: 11px;
}
h1 {
font-size: 58px;
}
.buttons {
flex-direction: column;
}
.buttons .button {
width: 100%;
}
.ca-line {
align-items: flex-start;
flex-direction: column;
}
.copy {
width: 100%;
}
}
NANO DOG
$NANODOG
Follow X ↗
SOLANA MEME COIN
Small dog.
Big orange energy.
Nano Dog is a tiny meme with a giant personality.
Powered by Solana, orange sweaters, and questionable decisions.
Copy contract
Follow @runeye100
SOLANA CONTRACT ADDRESS
E4UAMFFu8RtAcSzq1jMfnjCPjXYo1gvhZ7f551jWHoCm
Copy
Nano Dog is an independent meme project and is not affiliated with
Bitcoin. Nothing on this website is financial advice.
Tiny dog · Big orange energy · Solana speed · Maximum meme power
01 / THE LORE
Born tiny.Built loud.
He does not bark. He just watches the chart, wears the orange sweater,
and waits for the internet to discover Nano Dog.
01
Too small to fail
A tiny dog with an unnecessarily large amount of confidence.
02
Orange mode
The sweater is orange. The energy is orange. The dog is ready.
03
No boring vibes
Bring memes, good energy, and absolutely no guaranteed-profit claims.
02 / TOKEN FACTS
Keep it simple.
Always verify the full contract address before interacting with any
token or connecting a wallet.
Name
Nano Dog
Ticker
$NANODOG
Network
Solana
Contract
E4UAMFFu8RtAcSzq1jMfnjCPjXYo1gvhZ7f551jWHoCm
View on Solscan ↗
03 / JOIN THE PACK
Enter nano mode.
Follow the official X account for updates, memes, and more orange
energy from Nano Dog.
Follow @runeye100 on X ↗
NANO DOG — Small dog. Big orange energy.
Back to top ↑
const contract =
"E4UAMFFu8RtAcSzq1jMfnjCPjXYo1gvhZ7f551jWHoCm";
const status = document.getElementById("status");
const buttons = [
document.getElementById("copyTop"),
document.getElementById("copyBottom")
];
async function copyContract() {
try {
await navigator.clipboard.writeText(contract);
status.textContent = "Contract copied.";
buttons.forEach(function(button) {
button.textContent = "Copied!";
});
setTimeout(function() {
status.textContent = "";
buttons.forEach(function(button) {
button.textContent = button.id === "copyTop"
? "Copy contract"
: "Copy";
});
}, 2000);
} catch (error) {
status.textContent = "Please copy the address manually.";
}
}
buttons.forEach(function(button) {
button.addEventListener("click", copyContract);
});