Update src/app/blog/page.tsx
This commit is contained in:
@@ -5,7 +5,6 @@ import ReactLenis from "lenis/react";
|
||||
import BlogCardTwo from '@/components/sections/blog/BlogCardTwo';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import TextAbout from '@/components/sections/about/TextAbout/TextAbout';
|
||||
|
||||
export default function BlogPage() {
|
||||
return (
|
||||
@@ -22,53 +21,45 @@ export default function BlogPage() {
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Blog", id: "/blog" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
brandName="3D Industry"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Blog", id: "/blog" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
brandName="3D Industry"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="blog-list" data-section="blog-list">
|
||||
<BlogCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Teknoloji Blogu"
|
||||
description="Güncel bilgiler."
|
||||
blogs={[
|
||||
{
|
||||
id: "b1", category: "Teknoloji", title: "3D Baskı Nedir?", excerpt: "Temel bilgiler.", imageSrc: "http://img.b2bpic.net/free-photo/man-holding-rubber-bicycle-part_23-2147892660.jpg", authorName: "Uzman", authorAvatar: "http://img.b2bpic.net/free-photo/middle-aged-business-man-hard-hat_1303-23577.jpg", date: "10.05.2024"
|
||||
},
|
||||
{
|
||||
id: "b2", category: "Mühendislik", title: "Tersine Mühendislik", excerpt: "Avantajları.", imageSrc: "http://img.b2bpic.net/free-photo/add-details-car-body-robotic-equipment-makes-assembly-car-modern-car-assembly-factory_645730-646.jpg", authorName: "Uzman", authorAvatar: "http://img.b2bpic.net/free-photo/mature-business-woman-analyzing-chart-held-infront-her_171337-8318.jpg", date: "12.05.2024"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="blog-list" data-section="blog-list">
|
||||
<BlogCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Teknoloji Blogu"
|
||||
description="Güncel bilgiler."
|
||||
blogs={[
|
||||
{
|
||||
id: "b1", category: "Teknoloji", title: "3D Baskı Nedir?", excerpt: "Temel bilgiler.", imageSrc: "http://img.b2bpic.net/free-photo/man-holding-rubber-bicycle-part_23-2147892660.jpg", authorName: "Uzman", authorAvatar: "http://img.b2bpic.net/free-photo/middle-aged-business-man-hard-hat_1303-23577.jpg", date: "10.05.2024"
|
||||
},
|
||||
{
|
||||
id: "b2", category: "Mühendislik", title: "Tersine Mühendislik", excerpt: "Avantajları.", imageSrc: "http://img.b2bpic.net/free-photo/add-details-car-body-robotic-equipment-makes-assembly-car-modern-car-assembly-factory_645730-646.jpg", authorName: "Uzman", authorAvatar: "http://img.b2bpic.net/free-photo/mature-business-woman-analyzing-chart-held-infront-her_171337-8318.jpg", date: "12.05.2024"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<TextAbout
|
||||
useInvertedBackground={false}
|
||||
title="Teknoloji Odaklı"
|
||||
description="Geleceği bugünden tasarlıyoruz."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
columns={[
|
||||
{ title: "Hizmetler", items: [{ label: "3D Baskı", href: "/services" }, { label: "3D Tarama", href: "/services" }, { label: "Tersine Mühendislik", href: "/services" }] },
|
||||
{ title: "Kurumsal", items: [{ label: "Hakkımızda", href: "/about" }, { label: "Blog", href: "/blog" }, { label: "İletişim", href: "/contact" }] }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
columns={[
|
||||
{ title: "Hizmetler", items: [{ label: "3D Baskı", href: "/services" }, { label: "3D Tarama", href: "/services" }, { label: "Tersine Mühendislik", href: "/services" }] },
|
||||
{ title: "Kurumsal", items: [{ label: "Hakkımızda", href: "/about" }, { label: "Blog", href: "/blog" }, { label: "İletişim", href: "/contact" }] }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user