Switch to version 1: remove src/app/logics/page.tsx

This commit is contained in:
2026-05-07 05:52:49 +00:00
parent 33da479a25
commit 7798b47c79

View File

@@ -1,43 +0,0 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import FooterMedia from '@/components/sections/footer/FooterMedia';
export default function Logics() {
return (
<ThemeProvider
defaultButtonVariant="text-shift"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="smallMedium"
sizing="mediumLargeSizeMediumTitles"
background="noiseDiagonalGradient"
cardStyle="gradient-bordered"
primaryButtonStyle="shadow"
secondaryButtonStyle="glass"
headingFontWeight="bold"
>
<ReactLenis root>
<NavbarLayoutFloatingInline
navItems={[{ name: "Home", id: "/" }, { name: "Intro", id: "/introduction-to-philosophy" }, { name: "Scope", id: "/scope-of-methods" }, { name: "Logics", id: "/logics" }]}
brandName="Sophia's Path"
/>
<div className="pt-32 pb-20 px-8 max-w-4xl mx-auto">
<h1 className="text-5xl font-bold mb-8">Logics</h1>
<p className="text-xl mb-6">Logic is the formal science of valid inference, dealing with the structure of arguments, consistency, and logical necessity.</p>
<div className="bg-card p-8 rounded-lg shadow-md mb-8">
<h2 className="text-2xl font-semibold mb-4">Core Concepts</h2>
<p>Deduction, induction, abduction, and the laws of thought.</p>
</div>
<blockquote className="italic border-l-4 border-accent pl-4 py-2 mb-8 text-lg">"Logic is the beginning of wisdom, not the end." - Spock</blockquote>
<div className="flex flex-wrap gap-2">
{["Inference", "Consistency", "Formalization", "Truth"].map(k => <span key={k} className="bg-accent/20 px-3 py-1 rounded-full">{k}</span>)}
</div>
</div>
<FooterMedia logoText="Sophia's Path" columns={[{ title: "Navigation", items: [{ label: "Home", href: "/" }] }]} />
</ReactLenis>
</ThemeProvider>
);
}