Skip to content

Commit

Permalink
refactor:railway yüzünden projenın backendı calısmamakdadır
Browse files Browse the repository at this point in the history
  • Loading branch information
ademsuslu committed Dec 6, 2024
1 parent cc57365 commit 49b1374
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 113 deletions.
5 changes: 2 additions & 3 deletions app/(root)/blog/[title]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@ export default async function BlogDetails({
params: Promise<{ title: string }>
}) {
const title = (await params).title
// const response = await fetch(`${process.env.NEXT_API_URL}/blogs/${title}`, { cache: 'no-store' })
// const data = await response.json()
// console.log(data)
const response = await fetch(`${process.env.NEXT_API_URL}/blogs/${title}`, { cache: 'no-store' })
const data = await response.json()
return (
<div className=" mx-auto gap-2">
<div className="mt-6"></div>
Expand Down
13 changes: 5 additions & 8 deletions app/(root)/blog/page.tsx
Original file line number Diff line number Diff line change
@@ -1,19 +1,16 @@
import Blogs from '@/components/shared/blog/blogs'
import React from 'react'
import { blogs } from '@/data/projects'

export default async function BlogPage() {

// // create a fetch
// const response = await fetch('https://jsonplaceholder.typicode.com/posts', { cache: 'no-store' })
// const data = await response.json()

// // map through the data and return the Blog component for each post
// create a fetch
const response = await fetch('https://crm-backend-production-e80f.up.railway.app/api/blogs', { cache: 'no-store' })
const data = await response.json()


return (
<div className='space-y-4 h-full'>
<h1 className='mt-4 text-xl font-bold'>Blogs For SusluCrm</h1>
<Blogs data={blogs}/>
<Blogs data={data}/>
</div>
)
}
102 changes: 0 additions & 102 deletions data/projects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,105 +38,3 @@ export const projects = [
];


export const blogs = [
{
_id: 1,
title: "SusluCrm ile İş Yönetiminde Yeni Çağ",
desc: "SusluCrm, iş süreçlerini kolaylaştıran, kullanıcı dostu bir CRM platformudur. Verimliliğinizi artırmak için ideal bir çözüm.",
img: "https://images.pexels.com/photos/3184638/pexels-photo-3184638.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1",
tags: ["suslucrm", "iş yönetimi"],
link: "https://www.suslucrm.com/yeni-cag",
createdAt: "2023.12.01",
updatedAt: "2023.12.01"
},
{
_id: 2,
title: "CRM Çözümlerinde SusluCrm'in Gücü",
desc: "Küçük ve orta ölçekli işletmelere özel CRM çözümleriyle iş süreçlerinizi optimize edin.",
img: "https://images.pexels.com/photos/3184292/pexels-photo-3184292.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1",
tags: ["crm", "verimlilik"],
link: "https://www.suslucrm.com/cozumler",
createdAt: "2023.11.20",
updatedAt: "2023.11.22"
},
{
_id: 3,
title: "Müşteri İlişkilerini Güçlendirin",
desc: "Müşterilerinizle etkili iletişim kurun ve memnuniyetlerini artırın. SusluCrm ile her şey mümkün.",
img: "https://images.pexels.com/photos/3184352/pexels-photo-3184352.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1",
tags: ["müşteri yönetimi", "crm"],
link: "https://www.suslucrm.com/musteri-iliskileri",
createdAt: "2023.11.10",
updatedAt: "2023.11.15"
},
{
_id: 4,
title: "Satış Süreçlerini Kolaylaştırın",
desc: "Satış hedeflerinize daha hızlı ulaşmak için SusluCrm'in gelişmiş araçlarını kullanın.",
img: "https://images.pexels.com/photos/3184294/pexels-photo-3184294.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1",
tags: ["satış", "otomasyon"],
link: "https://www.suslucrm.com/satis-sureci",
createdAt: "2023.10.30",
updatedAt: "2023.11.01"
},
{
_id: 5,
title: "Ekip Çalışmasını Güçlendirin",
desc: "Ekip arkadaşlarınızla daha etkili iş birliği yapın. SusluCrm ile proje yönetimi artık çok kolay.",
img: "https://images.pexels.com/photos/3184333/pexels-photo-3184333.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1",
tags: ["ekip yönetimi", "iş birliği"],
link: "https://www.suslucrm.com/ekip-yonetimi",
createdAt: "2023.10.20",
updatedAt: "2023.10.25"
},
{
_id: 6,
title: "Pazarlama Stratejilerini Optimize Edin",
desc: "SusluCrm ile veri odaklı pazarlama stratejileri oluşturun ve hedef kitlenize daha iyi ulaşın.",
img: "https://images.pexels.com/photos/3184355/pexels-photo-3184355.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1",
tags: ["pazarlama", "strateji"],
link: "https://www.suslucrm.com/pazarlama",
createdAt: "2023.09.15",
updatedAt: "2023.09.20"
},
{
_id: 7,
title: "Veri Analizi ile Daha Akıllı Kararlar",
desc: "İş performansınızı analiz edin ve geleceğe dair doğru kararlar alın.",
img: "https://images.pexels.com/photos/3184392/pexels-photo-3184392.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1",
tags: ["veri analizi", "raporlama"],
link: "https://www.suslucrm.com/veri-analizi",
createdAt: "2023.08.10",
updatedAt: "2023.08.15"
},
{
_id: 8,
title: "Mobil CRM Deneyimi",
desc: "Hareket halindeyken iş süreçlerinizi yönetin. SusluCrm mobil uygulaması ile tanışın.",
img: "https://images.pexels.com/photos/3184627/pexels-photo-3184627.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1",
tags: ["mobil crm", "esneklik"],
link: "https://www.suslucrm.com/mobil",
createdAt: "2023.07.01",
updatedAt: "2023.07.05"
},
{
_id: 9,
title: "SusluCrm ile Güvenlik Çözümleri",
desc: "Verilerinizi koruma altına alın. SusluCrm ile maksimum güvenlik sağlanır.",
img: "https://images.pexels.com/photos/3184394/pexels-photo-3184394.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1",
tags: ["güvenlik", "veri koruma"],
link: "https://www.suslucrm.com/guvenlik",
createdAt: "2023.06.15",
updatedAt: "2023.06.20"
},
{
_id: 10,
title: "SusluCrm Başarı Hikayeleri",
desc: "Başarıya ulaşan işletmelerin SusluCrm deneyimlerini keşfedin.",
img: "https://images.pexels.com/photos/3184640/pexels-photo-3184640.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1",
tags: ["başarı hikayeleri", "referanslar"],
link: "https://www.suslucrm.com/basari-hikayeleri",
createdAt: "2023.05.01",
updatedAt: "2023.05.05"
}
];

0 comments on commit 49b1374

Please sign in to comment.