import React from 'react';
class App extends React.Component {
render() {
return (
<div className="bg-black text-white min-h-screen font-gothic">
<header className="p-5 border-b border-gray-800">
<h1 className="text-4xl font-bold text-center">
<span className="text-red-600">☠️</span> Ancient Occult <span className="text-red-600">☠️</span>
</h1>
</header>
<main className="p-5">
<section className="mb-10">
<h2 className="text-3xl font-bold mb-5">Overview</h2>
<p className="text-gray-400 leading-relaxed">
Dive into the ancient world of mysticism and ritualistic practices. Explore the symbols, runes, and pentagrams that have shaped occult traditions for centuries.
</p>
</section>
<section className="mb-10">
<h2 className="text-3xl font-bold mb-5">Symbols</h2>
<div className="grid grid-cols-1 gap-5 md:grid-cols-2 lg:grid-cols-3">
<img src="https://placehold.co/300X300" alt="Symbol" className="w-full h-auto border border-gray-800" />
<img src="https://placehold.co/300X300" alt="Rune" className="w-full h-auto border border-gray-800" />
<img src="https://placehold.co/300X300" alt="Pentagram" className="w-full h-auto border border-gray-800" />
</div>
</section>
<section className="mb-10">
<h2 className="text-3xl font-bold mb-5">History</h2>
<p className="text-gray-400 leading-relaxed">
The origins of occult symbols can be traced back to ancient civilizations. These symbols were used in rituals, ceremonies, and as protective talismans.
</p>
</section>
<section className="mb-10">
<h2 className="text-3xl font-bold mb-5">Rituals</h2>
<p className="text-gray-400 leading-relaxed">
Rituals are a core aspect of occult practices. They often involve the use of symbols, chants, and offerings to invoke spiritual entities.
</p>
</section>
<section className="mb-10">
<h2 className="text-3xl font-bold mb-5">Grimoires</h2>
<p className="text-gray-400 leading-relaxed">
Grimoires are ancient books of magic that contain spells, rituals, and instructions on how to summon spiritual entities.
</p>
</section>
<section className="mb-10">
<h2 className="text-3xl font-bold mb-5">Darkthrone & Mayhem</h2>
<p className="text-gray-400 leading-relaxed">
The visual styles of Darkthrone and Mayhem have greatly influenced the aesthetic of modern occultism and black metal music.
</p>
</section>
<section className="mb-10">
<h2 className="text-3xl font-bold mb-5">Contact</h2>
<p className="text-gray-400 leading-relaxed">
For more information, feel free to reach out to us via our contact page.
</p>
</section>
</main>
<footer className="p-5 border-t border-gray-800">
<p className="text-center text-gray-400">© 2025 Ancient Occult ☠️</p>
</footer>
</div>
);
}
}
export default App;