Skip to content

Commit 381a7eb

Browse files
committed
Change paths in generated data
1 parent b684da8 commit 381a7eb

File tree

3 files changed

+18
-38
lines changed

3 files changed

+18
-38
lines changed

shipixen/app/page.tsx

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import {
3131
export default function Home() {
3232
return (
3333
<div className="flex flex-col w-full items-center fancy-overlay">
34-
<LandingSocialProofBand invert={false} className="hidden md:flex">
34+
{/* <LandingSocialProofBand invert={false} className="hidden md:flex">
3535
<LandingSocialProofBandItem>
3636
Fast, reliable, and secure
3737
</LandingSocialProofBandItem>
@@ -43,7 +43,7 @@ export default function Home() {
4343
<LandingSocialProofBandItem graphic="rating">
4444
99% customer satisfaction
4545
</LandingSocialProofBandItem>
46-
</LandingSocialProofBand>
46+
</LandingSocialProofBand> */}
4747

4848
<Header className="mb-0 lg:mb-0" />
4949

@@ -52,12 +52,12 @@ export default function Home() {
5252
description="Get rare limited time details on selected SaaS, software, apps and services. Discounts for Black Friday and beyond."
5353
textPosition="left"
5454
withBackground
55-
leadingComponent={<LandingProductHuntAward />}
55+
// leadingComponent={<LandingProductHuntAward />}
5656
>
57-
<LandingDiscount
57+
{/* <LandingDiscount
5858
discountValueText="30% off"
5959
discountDescriptionText="for the first 10 customers (2 left)"
60-
/>
60+
/> */}
6161

6262
<LandingSocialProof
6363
className="w-full mt-12"
@@ -81,7 +81,11 @@ export default function Home() {
8181
/>
8282
</LandingPrimaryTextCtaSection>
8383

84-
<LandingProductFeature
84+
<section className="wide-container mt-12">
85+
<LatestArticles />
86+
</section>
87+
88+
{/* <LandingProductFeature
8589
title="Limited Time Offers"
8690
descriptionComponent={
8791
<>
@@ -177,7 +181,7 @@ export default function Home() {
177181
imagePosition="left"
178182
imagePerspective="none"
179183
variant="secondary"
180-
/>
184+
/> */}
181185

182186
<LandingBandSection
183187
title="4.9/5 stars"
@@ -204,7 +208,7 @@ export default function Home() {
204208
}
205209
/>
206210

207-
<LandingProductFeature
211+
{/* <LandingProductFeature
208212
title="Rare Savings"
209213
descriptionComponent={
210214
<>
@@ -226,7 +230,7 @@ export default function Home() {
226230
ctaHref={'#'}
227231
ctaLabel={'Pre-order now'}
228232
withBackgroundGlow
229-
/>
233+
/> */}
230234

231235
<LandingTestimonialReadMoreWrapper size="md">
232236
<LandingTestimonialGrid
@@ -276,7 +280,7 @@ export default function Home() {
276280
/>
277281
</LandingTestimonialReadMoreWrapper>
278282

279-
<LandingFeatureList
283+
{/* <LandingFeatureList
280284
title="Awesome Features Await!"
281285
description="Explore the fantastic features of our AI app:"
282286
featureItems={[
@@ -335,7 +339,7 @@ export default function Home() {
335339
icon: <FramerIcon />,
336340
},
337341
]}
338-
/>
342+
/> */}
339343

340344
<LandingFaqCollapsibleSection
341345
title="Got Questions? We've Got Answers!"
@@ -360,9 +364,7 @@ export default function Home() {
360364
withBackground
361365
/>
362366

363-
<section className="wide-container mt-12">
364-
<LatestArticles />
365-
</section>
367+
366368
</div>
367369
);
368370
}

shipixen/data/sample-blog.mdx

Lines changed: 0 additions & 22 deletions
This file was deleted.

shipixen/scripts/parse-app-info.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const axios = require('axios');
44
const cheerio = require('cheerio');
55

66
const readmePath = '../../README.md';
7-
const outputDir = 'shipixen/public/static/images';
7+
const outputDir = '../public/static/images';
88

99
const categoryTags = {
1010
'Developer Tools': ['Developer', 'Tools', 'macOS'],
@@ -135,7 +135,7 @@ async function fetchAssets(app) {
135135
}
136136

137137
async function generateMarkdown(apps) {
138-
const markdownDir = path.join(__dirname, 'markdown');
138+
const markdownDir = path.join(__dirname, '../data/products');
139139
fs.mkdirSync(markdownDir, { recursive: true });
140140

141141
for (const app of apps) {

0 commit comments

Comments
 (0)