diff --git a/src/app/thoughts/page.tsx b/src/app/thoughts/page.tsx new file mode 100644 index 0000000..13101c7 --- /dev/null +++ b/src/app/thoughts/page.tsx @@ -0,0 +1,164 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; + +export default function ThoughtsPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Explore My Works", id: "/explore" }, + { name: "Vision", id: "/about" }, + { name: "Connect", id: "/connect" }, + { name: "Thoughts", id: "/thoughts" }, + ]; + + const footerColumns = [ + { + title: "Navigation", items: [ + { label: "Home", href: "/" }, + { label: "Explore My Works", href: "/explore" }, + { label: "Vision", href: "/about" }, + { label: "Contact", href: "/contact" }, + ], + }, + { + title: "Connect", items: [ + { label: "Calendly", href: "https://calendly.com/karu-navolab/growth-engine-demo-navo-lab" }, + { label: "Substack", href: "https://substack.com/@karuthompson" }, + { label: "X", href: "https://x.com/KaruThompson" }, + { label: "Email", href: "mailto:hello@example.com" }, + ], + }, + { + title: "Resources", items: [ + { label: "Newsletter", href: "#" }, + { label: "Thoughts", href: "/thoughts" }, + { label: "Privacy", href: "#" }, + { label: "Terms", href: "#" }, + ], + }, + ]; + + return ( + + + +
+

Thoughts & Reflections

+ +
+
+

On Intentional Design

+

+ Design is not merely about aesthetics; it's about purposeful communication. Every choice—from typography to spacing to color—should serve a deliberate intention. In a world of infinite possibilities, constraints breed creativity. The most compelling work emerges when creative vision is paired with strategic thinking. +

+
+ +
+

The Art of Curation

+

+ In an age of abundance, thoughtful curation has become essential. Whether selecting projects to showcase, ideas to pursue, or collaborators to work with, the ability to discern quality from noise is invaluable. Less is more—quality over quantity creates space for meaningful engagement. +

+
+ +
+

Learning Beyond Institutions

+

+ Traditional education has value, but so does self-directed mastery. The most fulfilling learning often happens when you pursue questions that genuinely interest you, rather than following a predetermined curriculum. Curiosity is the ultimate teacher, and discipline is the bridge between interest and expertise. +

+
+ +
+

On Storytelling

+

+ Stories shape how we understand the world. Whether through film, design, music, or writing, thoughtfully crafted narratives have the power to transform perspectives and inspire action. The most effective stories are those that reveal universal truths through specific, authentic details. +

+
+ +
+

Building With Purpose

+

+ Every project I undertake—whether it's a business, a creative work, or a platform—starts with a clear sense of purpose. What problem does it solve? Who does it serve? How does it contribute to something larger than itself? Intention precedes execution. When you know your why, the how becomes clear. +

+
+ +
+

Bridging Disciplines

+

+ Some of the most innovative work happens at the intersection of different fields. Design informs business strategy. Music teaches rhythm and structure. Film composition reveals how to guide attention. By drawing from multiple disciplines, we create richer, more nuanced solutions. +

+
+ +
+

The Power of Vulnerability

+

+ Sharing unfinished work, admitting uncertainty, and being genuinely present with others creates deeper connections than polished perfection ever could. Vulnerability is not weakness; it's the foundation of authentic communication and meaningful collaboration. +

+
+ +
+

On Growth and Evolution

+

+ The work you created a year ago doesn't define you forever. Growth requires letting go—of old ideas, outdated approaches, and yesterday's certainties. The most vibrant creative practice is one that continuously evolves while maintaining core principles. Consistency of vision, flexibility of method. +

+
+ +
+

Why This Matters

+

+ These reflections emerge from lived experience—from failures and successes, from questioning conventions and building alternatives, from studying film and music and design, and from countless conversations with thoughtful people. They're not prescriptions but rather invitations to think differently about creativity, learning, and purpose. +

+
+
+ +
+

+ For longer-form writing and regular reflections, subscribe to my Substack newsletter. +

+
+
+ +
+ +
+ + +
+ ); +}