Skip to content

Commit 9a673ac

Browse files
authored
Merge pull request #24 from OnedocLabs/ffo-138-rework-welcome-page
Ffo 138 rework welcome page
2 parents 1256354 + f6b14ef commit 9a673ac

34 files changed

+1979
-216
lines changed

.DS_Store

6 KB
Binary file not shown.

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/fern/react-print-pdf/**
22
/fern/sdk/**
3-
/node_modules/**
3+
/node_modules/**
4+
.DS_Store

fern/.DS_Store

8 KB
Binary file not shown.

fern/assets/.DS_Store

6 KB
Binary file not shown.

fern/assets/form-pdf-marked.png

1.6 MB
Loading

fern/assets/form-pdf.png

308 KB
Loading

fern/assets/sample_docx.png

260 KB
Loading
108 KB
Loading

fern/docs.yml

Lines changed: 84 additions & 92 deletions
Original file line numberDiff line numberDiff line change
@@ -3,28 +3,98 @@ instances:
33
custom-domain: https://docs.fileforge.com
44
title: Fileforge
55
tabs:
6-
welcome:
7-
display-name: Welcome
6+
getting-started:
7+
display-name: Getting Started
88
react-print:
99
display-name: react-print
1010
icon: fa-brands fa-react
1111
API:
1212
display-name: API Reference
1313
icon: fa-solid fa-bolt
14-
SDK:
15-
display-name: SDK Reference
16-
icon: fa-solid fa-code
17-
help:
18-
display-name: Help Center
19-
icon: fa-solid fa-question
2014
navigation:
21-
- tab: welcome
15+
- tab: getting-started
2216
layout:
23-
- section: Get Started
17+
- section: General
2418
contents:
25-
- page: Welcome
19+
- page: Getting Started
2620
path: ./pages/overview/introduction.mdx
2721
slug: welcome
22+
- page: Authentication
23+
path: ./pages/api-reference/authentication.mdx
24+
slug: authentication
25+
- page: Working with Files
26+
path: ./pages/sdk-reference/node/working-with-files.mdx
27+
slug: node-working-with-files
28+
- section: Guide
29+
contents:
30+
- section: HTML to PDF
31+
contents:
32+
- section: Generate PDF
33+
contents:
34+
- page: Generate a local PDF
35+
path: >-
36+
./pages/help_center/html-to-pdf/generate-pdf-from-html-local.mdx
37+
slug: generate-local-pdf-from-html
38+
icon: fa-solid fa-download
39+
- page: Generate a hosted PDF
40+
path: >-
41+
./pages/help_center/html-to-pdf/generate-hosted-pdf-from-html.mdx
42+
slug: generate-hosted-pdf-from-html
43+
icon: fa-solid fa-cloud
44+
- page: Generate a PDF with react-print
45+
path: >-
46+
./pages/help_center/html-to-pdf/generate-pdf-from-html-react-print.mdx
47+
slug: generate-pdf-from-html
48+
icon: fa-brands fa-react
49+
- page: Generate a PDF with assets
50+
path: >-
51+
./pages/help_center/html-to-pdf/generate-pdf-from-html-assets.mdx
52+
slug: generate-pdf-from-html-assets
53+
icon: fa-solid fa-paperclip
54+
- section: Styling your PDF
55+
contents:
56+
- page: Page Layout & Style
57+
path: ./react-print-pdf/docs/guides/page-layout.mdx
58+
slug: page-layout
59+
icon: fa-solid fa-file-pdf
60+
- page: Fonts
61+
path: ./react-print-pdf/docs/guides/fonts.mdx
62+
slug: fonts
63+
icon: fa-solid fa-font
64+
- section: DOCX to PDF
65+
contents:
66+
- page: DOCX to PDF with variables
67+
path: ./pages/help_center/docx-to-pdf/convert-docx-to-pdf.mdx
68+
slug: convert-docx-to-pdf
69+
icon: fa-solid fa-file-word
70+
- section: PDF Operations
71+
contents:
72+
- page: Merge
73+
path: ./pages/help_center/merge-pdfs/merge-multiple-pdfs.mdx
74+
slug: pdf-merge
75+
icon: fa-solid fa-files
76+
- page: Split
77+
path: ./pages/help_center/split-pdfs/split-pdf.mdx
78+
slug: pdf-split
79+
icon: fa-solid fa-file-dashed-line
80+
- page: Extract Pages
81+
path: ./pages/help_center/extract-pages/extract-pages-from-pdf.mdx
82+
slug: pdf-extract
83+
icon: fa-solid fa-copy
84+
- section: PDF Form Operations
85+
contents:
86+
- page: Detect fields
87+
path: ./pages/help_center/pdf-forms/detect.mdx
88+
slug: pdf-form-detect
89+
icon: fa-solid fa-magnifying-glass
90+
- page: Mark fields
91+
path: ./pages/help_center/pdf-forms/mark.mdx
92+
slug: pdf-form-mark
93+
icon: fa-solid fa-pencil
94+
- page: Fill fields
95+
path: ./pages/help_center/pdf-forms/fill.mdx
96+
slug: pdf-form-fill
97+
icon: fa-solid fa-pen-to-square
2898
- tab: react-print
2999
layout:
30100
- section: Welcome
@@ -37,16 +107,6 @@ navigation:
37107
path: ./react-print-pdf/docs/getting-started/setup.mdx
38108
slug: setup
39109
icon: fa-solid fa-hammer
40-
- section: Guides
41-
contents:
42-
- page: Page Layout & Style
43-
path: ./react-print-pdf/docs/guides/page-layout.mdx
44-
slug: page-layout
45-
icon: fa-solid fa-file
46-
- page: Fonts
47-
path: ./react-print-pdf/docs/guides/fonts.mdx
48-
slug: fonts
49-
icon: fa-solid fa-font
50110
- section: Contributing
51111
contents:
52112
- page: Contributing
@@ -193,79 +253,11 @@ navigation:
193253
- page: Getting started
194254
path: ./pages/api-reference/introduction.mdx
195255
slug: api-reference
196-
- page: Authentication
197-
path: ./pages/api-reference/authentication.mdx
198-
slug: authentication
199256
- api: API Reference
200257
snippets:
201258
typescript: '@fileforge/client'
202-
- tab: SDK
203-
layout:
204-
- section: Getting Started
205-
contents:
206-
- page: Getting Started
207-
path: ./pages/sdk-reference/introduction.mdx
208-
slug: sdk-reference
209-
- section: JS/Node
210-
slug: node
211-
contents:
212-
- page: Getting Started
213-
path: ./pages/sdk-reference/node/introduction.mdx
214-
slug: node-sdk-reference
215-
- page: Error Handling
216-
path: ./pages/sdk-reference/node/errors.mdx
217-
slug: node-error-handling
218-
- page: Working with Files
219-
path: ./pages/sdk-reference/node/working-with-files.mdx
220-
slug: node-working-with-files
221-
- section: PDF
222-
contents:
223-
- page: fromDocx
224-
path: ./pages/sdk-reference/node/PDF/fromDocx.mdx
225-
slug: from-docx
226-
- page: generate
227-
path: ./pages/sdk-reference/node/PDF/generate.mdx
228-
slug: generate-from-html
229-
- page: merge
230-
path: ./pages/sdk-reference/node/PDF/merge.mdx
231-
slug: merge
232-
- section: Form
233-
contents:
234-
- page: detect
235-
path: ./pages/sdk-reference/node/Form/detect.mdx
236-
slug: detect
237-
- page: mark
238-
path: ./pages/sdk-reference/node/Form/mark.mdx
239-
slug: mark
240-
- page: fill
241-
path: ./pages/sdk-reference/node/Form/fill.mdx
242-
slug: fill
243-
- section: Types
244-
contents:
245-
- page: FormFillRequestOptionsFieldsItem
246-
path: >-
247-
./pages/sdk-reference/node/Form/Types/formfillrequestoptionsfieldsitem.mdx
248-
slug: formFillRequestOptionsFieldsItem
249-
- page: FormDetectResponseItem
250-
path: >-
251-
./pages/sdk-reference/node/Form/Types/formdetectresponseitem.mdx
252-
slug: formDetectResponseItem
253-
- tab: help
254-
layout:
255-
- section: HTML to PDF
256-
contents:
257-
- page: Generate a PDF with react-print
258-
path: >-
259-
./pages/help_center/html_to_pdf/generate-pdf-from-html-react-print.mdx
260-
slug: generate-pdf-from-html
261-
- page: Generate a PDF with assets
262-
path: ./pages/help_center/html_to_pdf/generate-pdf-from-html-assets.mdx
263-
slug: generate-pdf-from-html-assets
264-
- page: Generate a hosted PDF
265-
path: ./pages/help_center/html_to_pdf/generate-hosted-pdf-from-html.mdx
266-
slug: generate-hosted-pdf
267259
colors:
268-
accentPrimary: '#AD8AFF'
260+
accentPrimary: '#82C7FF'
269261
background:
270262
dark: '#000000'
271263
light: '#ffffff'
@@ -278,7 +270,7 @@ layout:
278270
navbar-links:
279271
- type: minimal
280272
text: Support
281-
url: mailto:contact@onedoclabs.com
273+
url: mailto:contact@fileforge.com
282274
- type: outlined
283275
text: Get Started
284-
url: https://app.onedoclabs.com/login
276+
url: https://app.fileforge.com/login

fern/fern.config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"organization": "fileforge",
3-
"version": "0.30.1"
3+
"version": "0.30.7"
44
}

0 commit comments

Comments
 (0)