├── .eslintrc.json ├── public ├── banner.png ├── favicon.ico ├── images │ ├── ios.jpg │ ├── blog.jpg │ ├── code.jpg │ ├── dice.jpg │ ├── eyes.png │ ├── lens.jpg │ ├── tech.jpg │ ├── yogo.jpg │ ├── android.jpg │ ├── blog-2.jpg │ ├── blogging.jpg │ ├── camera.jpg │ ├── codeing.jpg │ ├── computer.jpg │ ├── flowers.jpg │ ├── health.jpg │ ├── humans.jpg │ ├── iphone.jpg │ ├── leaves.jpg │ ├── natural.jpg │ ├── woman-4.jpg │ ├── woman-5.jpg │ ├── contact-us.png │ ├── smartphone.jpg │ ├── technology.jpg │ ├── vegetables.jpg │ ├── desk-desktop.jpg │ ├── desk-laptop.jpg │ ├── hanoi-natural.jpg │ ├── photographer.jpg │ ├── fantasy-android.jpg │ └── software-developer.jpg └── Nextify.svg ├── .github └── images │ ├── card_1.png │ ├── card_2.png │ ├── nextify.png │ ├── nextify-blog.png │ ├── nextify-demo.gif │ ├── nextify-docs.png │ ├── nextify-page.png │ ├── nextify-read.png │ ├── nextify-tag.png │ ├── nextify-footer.png │ ├── nextify-search.png │ ├── nextify-blog-card.png │ └── nextify-logo.svg ├── postcss.config.mjs ├── lib ├── utils.ts └── source.ts ├── content ├── docs │ ├── meta.json │ ├── get-started │ │ ├── meta.json │ │ ├── index.mdx │ │ ├── architecture.mdx │ │ ├── features.mdx │ │ ├── uninstall.mdx │ │ ├── installation.mdx │ │ ├── introduction.mdx │ │ └── system-requirements.mdx │ ├── community │ │ ├── index.mdx │ │ ├── contribute-to-nextify.mdx │ │ ├── feedback-and-support.mdx │ │ └── code-of-conduct.mdx │ ├── components │ │ ├── index.mdx │ │ ├── banner.mdx │ │ ├── zoom-image.mdx │ │ ├── tabs.mdx │ │ ├── accordion.mdx │ │ └── steps.mdx │ ├── troubleshooting │ │ ├── index.mdx │ │ ├── overview.mdx │ │ └── error.mdx │ ├── deployments │ │ ├── index.mdx │ │ ├── netlify.mdx │ │ ├── vercel.mdx │ │ └── kinsta.mdx │ ├── plugins │ │ ├── index.mdx │ │ ├── package-install.mdx │ │ ├── rehype-code.mdx │ │ ├── remark-image.mdx │ │ └── remark-admonition.mdx │ └── index.mdx ├── pages │ ├── license.mdx │ ├── terms-of-service.mdx │ ├── privacy-policy.mdx │ ├── about.mdx │ └── changelog.mdx └── blog │ ├── ten-features-of-smart-phone-that-make-everyone-love-it.md │ ├── 7-useful-tips-from-python-experts-in-programming.md │ ├── ten-reasons-why-you-cannot-start-blog-blogging.md │ ├── blog-that-had-gone-way-too-far.md │ ├── photography-is-not-rocket-science-learn-them-now.md │ ├── the-history-of-humans.md │ ├── cillum-cupidatat-proident-fugiat-aute.md │ ├── seven-mind-blowing-facts-about-smart-phone.md │ ├── understand-the-android-features-before-you-regret.md │ ├── random-my-blog-title.md │ ├── five-secrets-you-will-never-know-about-blogging.md │ ├── top-10-sites-you-can-learn-programming-for-free.md │ ├── seven-ways-to-have-fun-learning-computer-science.md │ ├── 7-ways-to-use-computer-science-to-your-advantage.md │ ├── 15-common-misconceptions-about-health.md │ ├── 5-reasons-why-you-shouldnt-learn-photography-on-your-own.md │ ├── how-computer-science-is-going-to-change-your-business-strategies.md │ ├── the-millionaire-guide-on-programing-to-help-you-get-rich.md │ ├── 10-things-you-most-likely-didnt-know-about-health.md │ ├── 15-facts-you-never-knew-about-photography.md │ └── why-learning-tech-can-actually-improve-your-working-speed.md ├── app ├── api │ └── search │ │ └── route.ts ├── (home) │ ├── layout.tsx │ ├── page.tsx │ ├── blog │ │ ├── [slug] │ │ │ ├── share.client.tsx │ │ │ └── page.tsx │ │ ├── page.tsx │ │ └── tag │ │ │ └── [slug] │ │ │ └── page.tsx │ ├── layout.config.tsx │ └── page │ │ └── [slug] │ │ └── page.tsx ├── docs │ ├── layout.tsx │ └── [[...slug]] │ │ └── page.tsx ├── docs-og │ └── [...slug] │ │ └── route.tsx ├── layout.config.tsx ├── layout.tsx └── global.css ├── mdx-components.tsx ├── next.config.mjs ├── .gitignore ├── components ├── Icon │ ├── X.tsx │ ├── Faceboo.tsx │ └── Instagram.tsx ├── ui │ ├── separator.tsx │ ├── button.tsx │ └── card.tsx ├── Logo │ └── Logo.tsx ├── Card │ ├── Card_2.tsx │ └── Card_1.tsx └── Footer │ └── Footer.tsx ├── components.json ├── types.d.ts ├── tsconfig.json ├── package.json ├── source.config.ts └── README.md /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["next/core-web-vitals", "next/typescript"] 3 | } 4 | -------------------------------------------------------------------------------- /public/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/public/banner.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/ios.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/public/images/ios.jpg -------------------------------------------------------------------------------- /public/images/blog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/public/images/blog.jpg -------------------------------------------------------------------------------- /public/images/code.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/public/images/code.jpg -------------------------------------------------------------------------------- /public/images/dice.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/public/images/dice.jpg -------------------------------------------------------------------------------- /public/images/eyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/public/images/eyes.png -------------------------------------------------------------------------------- /public/images/lens.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/public/images/lens.jpg -------------------------------------------------------------------------------- /public/images/tech.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/public/images/tech.jpg -------------------------------------------------------------------------------- /public/images/yogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/public/images/yogo.jpg -------------------------------------------------------------------------------- /.github/images/card_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/.github/images/card_1.png -------------------------------------------------------------------------------- /.github/images/card_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/.github/images/card_2.png -------------------------------------------------------------------------------- /.github/images/nextify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/.github/images/nextify.png -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- 1 | export default { 2 | plugins: { 3 | '@tailwindcss/postcss': {}, 4 | }, 5 | }; 6 | -------------------------------------------------------------------------------- /public/images/android.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/public/images/android.jpg -------------------------------------------------------------------------------- /public/images/blog-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/public/images/blog-2.jpg -------------------------------------------------------------------------------- /public/images/blogging.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/public/images/blogging.jpg -------------------------------------------------------------------------------- /public/images/camera.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/public/images/camera.jpg -------------------------------------------------------------------------------- /public/images/codeing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/public/images/codeing.jpg -------------------------------------------------------------------------------- /public/images/computer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/public/images/computer.jpg -------------------------------------------------------------------------------- /public/images/flowers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/public/images/flowers.jpg -------------------------------------------------------------------------------- /public/images/health.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/public/images/health.jpg -------------------------------------------------------------------------------- /public/images/humans.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/public/images/humans.jpg -------------------------------------------------------------------------------- /public/images/iphone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/public/images/iphone.jpg -------------------------------------------------------------------------------- /public/images/leaves.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/public/images/leaves.jpg -------------------------------------------------------------------------------- /public/images/natural.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/public/images/natural.jpg -------------------------------------------------------------------------------- /public/images/woman-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/public/images/woman-4.jpg -------------------------------------------------------------------------------- /public/images/woman-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/public/images/woman-5.jpg -------------------------------------------------------------------------------- /public/images/contact-us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/public/images/contact-us.png -------------------------------------------------------------------------------- /public/images/smartphone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/public/images/smartphone.jpg -------------------------------------------------------------------------------- /public/images/technology.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/public/images/technology.jpg -------------------------------------------------------------------------------- /public/images/vegetables.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/public/images/vegetables.jpg -------------------------------------------------------------------------------- /.github/images/nextify-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/.github/images/nextify-blog.png -------------------------------------------------------------------------------- /.github/images/nextify-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/.github/images/nextify-demo.gif -------------------------------------------------------------------------------- /.github/images/nextify-docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/.github/images/nextify-docs.png -------------------------------------------------------------------------------- /.github/images/nextify-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/.github/images/nextify-page.png -------------------------------------------------------------------------------- /.github/images/nextify-read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/.github/images/nextify-read.png -------------------------------------------------------------------------------- /.github/images/nextify-tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/.github/images/nextify-tag.png -------------------------------------------------------------------------------- /public/images/desk-desktop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/public/images/desk-desktop.jpg -------------------------------------------------------------------------------- /public/images/desk-laptop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/public/images/desk-laptop.jpg -------------------------------------------------------------------------------- /public/images/hanoi-natural.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/public/images/hanoi-natural.jpg -------------------------------------------------------------------------------- /public/images/photographer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/public/images/photographer.jpg -------------------------------------------------------------------------------- /.github/images/nextify-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/.github/images/nextify-footer.png -------------------------------------------------------------------------------- /.github/images/nextify-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/.github/images/nextify-search.png -------------------------------------------------------------------------------- /public/images/fantasy-android.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/public/images/fantasy-android.jpg -------------------------------------------------------------------------------- /.github/images/nextify-blog-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/.github/images/nextify-blog-card.png -------------------------------------------------------------------------------- /public/images/software-developer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendweb3/nextify/HEAD/public/images/software-developer.jpg -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- 1 | import { clsx, type ClassValue } from "clsx" 2 | import { twMerge } from "tailwind-merge" 3 | 4 | export function cn(...inputs: ClassValue[]) { 5 | return twMerge(clsx(inputs)) 6 | } 7 | -------------------------------------------------------------------------------- /content/docs/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | "defaultOpen": true, 4 | "pages": [ 5 | "get-started", 6 | "components", 7 | "plugins", 8 | "testing", 9 | "deployments", 10 | "troubleshooting", 11 | "community" 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /content/docs/get-started/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "pages": [ 3 | "introduction", 4 | "features", 5 | "system-requirements", 6 | "installation", 7 | "uninstall", 8 | "[GitHub](https://github.com/frontendweb3/Nextify)" 9 | ], 10 | "index": true 11 | } 12 | -------------------------------------------------------------------------------- /public/Nextify.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/api/search/route.ts: -------------------------------------------------------------------------------- 1 | import { source } from '@/lib/source'; 2 | import { createFromSource } from 'fumadocs-core/search/server'; 3 | 4 | export const { GET } = createFromSource(source, { 5 | // https://docs.orama.com/open-source/supported-languages 6 | language: 'english', 7 | }); 8 | -------------------------------------------------------------------------------- /content/docs/community/index.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Community of Nextify 3 | description : Duis mollit non in voluptate et mollit aliquip ipsum officia proident aute velit. 4 | index : true 5 | --- 6 | 7 | Thank you for your interest in contributing to the Nextify! Before making contributions, we recommend reading our `CONTRIBUTING.md` guidelines. 8 | -------------------------------------------------------------------------------- /content/docs/components/index.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Components 3 | description: lists of components. 4 | index: true 5 | --- 6 | 7 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam. 8 | 9 | Quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. 10 | 11 | -------------------------------------------------------------------------------- /mdx-components.tsx: -------------------------------------------------------------------------------- 1 | import defaultMdxComponents from 'fumadocs-ui/mdx'; 2 | import type { MDXComponents } from 'mdx/types'; 3 | 4 | // use this function to get MDX components, you will need it for rendering MDX 5 | export function getMDXComponents(components?: MDXComponents): MDXComponents { 6 | return { 7 | ...defaultMdxComponents, 8 | ...components, 9 | }; 10 | } 11 | -------------------------------------------------------------------------------- /content/docs/troubleshooting/index.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Troubleshooting 3 | description: Cupidatat voluptate deserunt non ea exercitation sit consequat. 4 | index: true 5 | --- 6 | 7 | 8 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ullamco laboris nisi ut aliquip ex ea commodo consequat. 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- 1 | import { createMDX } from "fumadocs-mdx/next"; 2 | 3 | const withMDX = createMDX(); 4 | 5 | /** @type {import('next').NextConfig} */ 6 | const config = { 7 | reactStrictMode: true, 8 | images: { 9 | remotePatterns: [ 10 | { 11 | hostname: "images.pexels.com", 12 | }, 13 | ], 14 | }, 15 | }; 16 | 17 | export default withMDX(config); 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # deps 2 | /node_modules 3 | 4 | # generated content 5 | .contentlayer 6 | .content-collections 7 | .source 8 | 9 | # test & build 10 | /coverage 11 | /.next/ 12 | /out/ 13 | /build 14 | *.tsbuildinfo 15 | 16 | # misc 17 | .DS_Store 18 | *.pem 19 | /.pnp 20 | .pnp.js 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | 25 | # others 26 | .env*.local 27 | .vercel 28 | next-env.d.ts -------------------------------------------------------------------------------- /components/Icon/X.tsx: -------------------------------------------------------------------------------- 1 | export function XIcon() { 2 | return ( 3 | 9 | 10 | 11 | ); 12 | } 13 | -------------------------------------------------------------------------------- /app/(home)/layout.tsx: -------------------------------------------------------------------------------- 1 | import type { ReactNode } from "react"; 2 | import { HomeLayout } from "fumadocs-ui/layouts/home"; 3 | import { baseOptions } from "@/app/(home)/layout.config"; 4 | import { Footer } from "@/components/Footer/Footer"; 5 | 6 | export default function Layout({ children }: { children: ReactNode }) { 7 | return ( 8 | 9 | {children} 10 | 11 |