├── .content-collections ├── cache │ ├── blogpost │ │ └── agent_matching │ │ │ └── fe2ae60d7d38bb914378c8e77b3b4c538b2e9a86a9657d4343988d8890201a9a.cache │ ├── content-collection-config.mjs │ ├── helppost │ │ ├── become_provider │ │ │ └── 4fae9bb8d4cfc77639f0218eab41e6494a0681bd21ecea785dedc041bda123e8.cache │ │ ├── how_to_post_project │ │ │ └── 69994e16b8fd56f4bc2b97b3cf8f69e733672b8fbfea20648b5df7dd3700ab60.cache │ │ ├── integrations_overview │ │ │ └── 0a89c930f9ced244c961acb6bfb15f2e4b881da21ab2ee69c51a307722f5e3f4.cache │ │ ├── success_stories │ │ │ └── db6a6948ee9a3bf05b759b0fd1eef313aeeb4ad82fa5d426266c1d34e6b67869.cache │ │ └── what_is_dub │ │ │ └── 8ebe9a536d4b8cd51d4f056b3afebfe7675f52f71ecf8fab0d0ad15b44b41347.cache │ └── mapping.json └── generated │ ├── allBlogPosts.js │ ├── allChangelogPosts.js │ ├── allCustomersPosts.js │ ├── allHelpPosts.js │ ├── allIntegrationsPosts.js │ ├── allLegalPosts.js │ ├── allMarketReports.js │ ├── allPropertyPosts.js │ ├── index.d.ts │ └── index.js ├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── .vscode └── settings.json ├── README.md ├── content-collections.ts ├── next.config.mjs ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── public ├── DatabaseLogo.tsx ├── Propdock.svg ├── _static │ ├── clients │ │ └── corponor.svg │ └── integrasjoner │ │ ├── brreg.svg │ │ ├── fiken.svg │ │ ├── kartverket.svg │ │ ├── poweroffice.svg │ │ ├── propcloud.svg │ │ ├── propely.svg │ │ ├── signicat.svg │ │ ├── tripletex.svg │ │ └── visma.svg ├── blocks.svg ├── changelog │ ├── v316.webp │ └── v317.webp ├── fonts │ └── NanumPenScript.woff2 ├── images │ ├── break.webp │ ├── cool.webp │ ├── founders.webp │ ├── hero-dark.webp │ ├── hero-light.webp │ ├── home.webp │ ├── release.webp │ ├── testimonial.webp │ ├── working.webp │ └── workplace.webp ├── manifest.json └── opengraph-image.png ├── src ├── app │ ├── (blog) │ │ └── blog │ │ │ ├── (index) │ │ │ ├── category │ │ │ │ └── [slug] │ │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ │ └── (post) │ │ │ └── [slug] │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ ├── (help) │ │ └── help │ │ │ ├── article │ │ │ └── [slug] │ │ │ │ └── page.tsx │ │ │ ├── category │ │ │ └── [slug] │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── not-found.tsx │ │ │ └── page.tsx │ ├── (integrasjoner) │ │ └── integrasjoner │ │ │ ├── [slug] │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ ├── actions │ │ ├── investor │ │ │ └── set-view-count.ts │ │ └── onboarding │ │ │ ├── onboarding.ts │ │ │ └── search-organization.ts │ ├── api │ │ └── og │ │ │ └── help │ │ │ └── route.tsx │ ├── early-access │ │ └── page.tsx │ ├── favicon.ico │ ├── globals.css │ ├── investor │ │ └── page.tsx │ ├── kontakt │ │ └── page.tsx │ ├── kunder │ │ ├── [slug] │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ └── page.tsx │ ├── layout.tsx │ ├── markedsinnsikt │ │ ├── kart │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ └── page.tsx │ ├── not-found.tsx │ ├── om-oss │ │ ├── layout.tsx │ │ └── page.tsx │ ├── onboarding │ │ ├── layout.tsx │ │ └── page.tsx │ ├── page.tsx │ ├── pricing │ │ ├── layout.tsx │ │ └── page.tsx │ ├── propdock │ │ ├── dashboard │ │ │ └── map │ │ │ │ └── page.tsx │ │ ├── eiendom │ │ │ └── page.tsx │ │ ├── exit-strategi │ │ │ └── page.tsx │ │ ├── finansiering │ │ │ └── page.tsx │ │ ├── leietakere │ │ │ └── page.tsx │ │ ├── marked │ │ │ └── page.tsx │ │ ├── page.tsx │ │ ├── regnskap │ │ │ └── page.tsx │ │ ├── selskap │ │ │ └── page.tsx │ │ ├── simulering │ │ │ └── page.tsx │ │ └── verdivurdering │ │ │ └── page.tsx │ ├── robots.ts │ ├── siteConfig.ts │ ├── sitemap.ts │ └── tjenester │ │ ├── page.tsx │ │ └── verdsettelse │ │ └── page.tsx ├── components │ ├── Accordion.tsx │ ├── AreaChart.tsx │ ├── Arrow.tsx │ ├── Badge.tsx │ ├── BarChart.tsx │ ├── Button.tsx │ ├── Card.tsx │ ├── Checkbox.tsx │ ├── Code.tsx │ ├── ComboChart.tsx │ ├── CopyToClipboard.tsx │ ├── Drawer.tsx │ ├── Dropdown.tsx │ ├── Input.tsx │ ├── Label.tsx │ ├── LineChart.tsx │ ├── Popover.tsx │ ├── RadioCardGroup.tsx │ ├── RadioGroup.tsx │ ├── Select.tsx │ ├── Slider.tsx │ ├── Switch.tsx │ ├── TabNavigation.tsx │ ├── Table.tsx │ ├── Tabs.tsx │ ├── ThemeSwitch.tsx │ ├── Tooltip.tsx │ ├── blog │ │ ├── author.tsx │ │ ├── blog-card.tsx │ │ ├── blog-layout-hero.tsx │ │ ├── category-card.tsx │ │ ├── cmdk.tsx │ │ ├── copy-box.tsx │ │ ├── customers.tsx │ │ ├── feedback.tsx │ │ ├── help-article-link.tsx │ │ ├── icons │ │ │ ├── expanding-arrow.tsx │ │ │ └── magic.tsx │ │ ├── integrations.tsx │ │ ├── legal.tsx │ │ ├── logos.tsx │ │ ├── max-width-wrapper.tsx │ │ ├── mdx.tsx │ │ ├── modal.tsx │ │ ├── popover.tsx │ │ ├── search-button.tsx │ │ ├── table-of-contents.tsx │ │ ├── testimonials-mobile.tsx │ │ ├── testimonials.tsx │ │ └── zoom-image.tsx │ ├── cal-embed.tsx │ ├── data │ │ ├── data.ts │ │ ├── generateData.js │ │ ├── overview-data.ts │ │ └── schema.ts │ ├── footer.tsx │ ├── forms │ │ └── ContactForm.tsx │ ├── header.tsx │ ├── investor │ │ ├── carousel-toolbar.tsx │ │ ├── carousel.tsx │ │ ├── copy-input.tsx │ │ ├── icons.tsx │ │ ├── overview.png │ │ ├── pitch-carousel.tsx │ │ ├── reciept.png │ │ ├── section-book.tsx │ │ ├── section-business-model.tsx │ │ ├── section-demo.tsx │ │ ├── section-expansion.tsx │ │ ├── section-future-growth.tsx │ │ ├── section-growth-strategy.tsx │ │ ├── section-market.tsx │ │ ├── section-problem.tsx │ │ ├── section-solution.tsx │ │ ├── section-start.tsx │ │ ├── section-team.tsx │ │ ├── section-traction.tsx │ │ └── ui.tsx │ ├── markedsinnsikt │ │ ├── Chart-main-page.tsx │ │ ├── MarkedsKart.tsx │ │ ├── PageShell.tsx │ │ ├── SideNav.tsx │ │ └── Top-kpi-card.tsx │ ├── mdx.tsx │ ├── propdock │ │ ├── DcfChart.tsx │ │ ├── FeatureComparison.tsx │ │ ├── FeatureShowcase.tsx │ │ ├── Navigation.tsx │ │ ├── ProcessFlow.tsx │ │ ├── ProgressCircle.tsx │ │ ├── PropertyMapOverview.tsx │ │ ├── TablePageNavigation.tsx │ │ ├── YieldLineChart.tsx │ │ ├── eiendom │ │ │ └── PropertyMap.tsx │ │ ├── exit-strategi │ │ │ ├── AssumableFinancingCalculator.tsx │ │ │ ├── ExitStrategyPlanning.tsx │ │ │ ├── FixedVsVariableRateChart.tsx │ │ │ ├── LoanAmortizationChart.tsx │ │ │ ├── OptimalHoldPeriodCalculator.tsx │ │ │ └── PrepaymentAnalysisCalculator.tsx │ │ ├── finansiering │ │ │ └── DebtStructuring.tsx │ │ ├── leietakere │ │ │ └── TableLeietakere.tsx │ │ ├── marked │ │ │ ├── DemographicAnalysis.tsx │ │ │ ├── MarketSentiment.tsx │ │ │ └── MarketStatistics.tsx │ │ ├── regnskap │ │ │ ├── ChartMainAccouting.tsx │ │ │ ├── KpiAccountCards.tsx │ │ │ ├── RegnskapsAnalyse.tsx │ │ │ └── TableAccounting.tsx │ │ ├── sampleProperties.ts │ │ ├── simulering │ │ │ ├── InvestmentParameters.tsx │ │ │ ├── KeyMetrics.tsx │ │ │ ├── MarketAnalysis.tsx │ │ │ ├── ScenarioComparison.tsx │ │ │ └── ScenarioManager.tsx │ │ └── workflow │ │ │ ├── generator.ts │ │ │ ├── schema.ts │ │ │ └── workflow-data.ts │ └── ui │ │ ├── Analycits-dashboard.tsx │ │ ├── Animated-Grid-Background.tsx │ │ ├── AnimatedCTA.tsx │ │ ├── ArrowAnimated.tsx │ │ ├── Benefits.tsx │ │ ├── CodeExample.tsx │ │ ├── CodeExampleTabs.tsx │ │ ├── CommandBar.tsx │ │ ├── Cta-middle.tsx │ │ ├── Cta.tsx │ │ ├── Display-chart-landing.tsx │ │ ├── DisplayCards.tsx │ │ ├── Divider.tsx │ │ ├── EarlyAccessCta.tsx │ │ ├── Fade.tsx │ │ ├── Faqs.tsx │ │ ├── FeatureDivider.tsx │ │ ├── Features.tsx │ │ ├── Features2.tsx │ │ ├── Footer.tsx │ │ ├── GlobalDatabase.tsx │ │ ├── Hero.tsx │ │ ├── Hero2.tsx │ │ ├── HeroBackground.tsx │ │ ├── HeroImage.tsx │ │ ├── InstaxImage.tsx │ │ ├── LineChartTjeneste.tsx │ │ ├── LogoCloud.tsx │ │ ├── Logos.tsx │ │ ├── Navbar.tsx │ │ ├── Searchbar.tsx │ │ ├── SideNav.tsx │ │ ├── TeamGallery.tsx │ │ ├── Testimonial.tsx │ │ ├── ThemedImage.tsx │ │ ├── button.tsx │ │ └── data-table │ │ ├── DataTable.tsx │ │ ├── DataTableBulkEditor.tsx │ │ ├── DataTableColumnHeader.tsx │ │ ├── DataTableFilter.tsx │ │ ├── DataTableFilterbar.tsx │ │ ├── DataTablePagination.tsx │ │ ├── DataTableRowActions.tsx │ │ ├── DataTableViewOptions.tsx │ │ ├── PropertyComparisonDrawer.tsx │ │ ├── PropertyDrawer.tsx │ │ ├── TanstackTable.d.ts │ │ └── columns.tsx ├── content │ ├── blog │ │ ├── fremtiden-for-naringseiendom.mdx │ │ ├── introduserer-propdock.mdx │ │ ├── kunnskapsbase.mdx │ │ └── slik-analyserer-du-eiendomsmarkedet.mdx │ ├── changelog │ │ └── tastatursnarveier.mdx │ ├── customers │ │ └── corponor.mdx │ ├── docs │ │ └── sample.mdx │ ├── help │ │ ├── diskontert-kontantstrom.mdx │ │ ├── driftskostnader.mdx │ │ ├── felleskostnader.mdx │ │ ├── hva-er-propdock.mdx │ │ ├── hva-er-yield.mdx │ │ ├── kontantstromsanalyse.mdx │ │ ├── markedsleie-og-leieniva.mdx │ │ ├── netto-leieinntekter.mdx │ │ ├── sensitivitetsanalyse.mdx │ │ ├── tjene-mer-pa-naringseiendom.mdx │ │ └── verdivurdering-av-naringseiendom.mdx │ ├── integrations │ │ ├── brreg.mdx │ │ └── kartverket.mdx │ └── legal │ │ ├── privacy.mdx │ │ └── terms.mdx ├── lib │ ├── actions.ts │ ├── blog │ │ ├── blur-image.tsx │ │ ├── content.tsx │ │ ├── images.ts │ │ └── use-current-anchor.ts │ ├── chartUtils.ts │ ├── coordinateUtils.ts │ ├── formatters.ts │ ├── hooks │ │ ├── use-debounce.ts │ │ ├── use-media-query.ts │ │ └── use-window-size.ts │ ├── use-scroll.ts │ ├── useOnWindowResize.ts │ └── utils.ts ├── middleware.ts └── types │ └── simulation.ts ├── tailwind.config.ts └── tsconfig.json /.content-collections/cache/blogpost/agent_matching/fe2ae60d7d38bb914378c8e77b3b4c538b2e9a86a9657d4343988d8890201a9a.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/.content-collections/cache/blogpost/agent_matching/fe2ae60d7d38bb914378c8e77b3b4c538b2e9a86a9657d4343988d8890201a9a.cache -------------------------------------------------------------------------------- /.content-collections/cache/content-collection-config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/.content-collections/cache/content-collection-config.mjs -------------------------------------------------------------------------------- /.content-collections/cache/helppost/become_provider/4fae9bb8d4cfc77639f0218eab41e6494a0681bd21ecea785dedc041bda123e8.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/.content-collections/cache/helppost/become_provider/4fae9bb8d4cfc77639f0218eab41e6494a0681bd21ecea785dedc041bda123e8.cache -------------------------------------------------------------------------------- /.content-collections/cache/helppost/how_to_post_project/69994e16b8fd56f4bc2b97b3cf8f69e733672b8fbfea20648b5df7dd3700ab60.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/.content-collections/cache/helppost/how_to_post_project/69994e16b8fd56f4bc2b97b3cf8f69e733672b8fbfea20648b5df7dd3700ab60.cache -------------------------------------------------------------------------------- /.content-collections/cache/helppost/integrations_overview/0a89c930f9ced244c961acb6bfb15f2e4b881da21ab2ee69c51a307722f5e3f4.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/.content-collections/cache/helppost/integrations_overview/0a89c930f9ced244c961acb6bfb15f2e4b881da21ab2ee69c51a307722f5e3f4.cache -------------------------------------------------------------------------------- /.content-collections/cache/helppost/success_stories/db6a6948ee9a3bf05b759b0fd1eef313aeeb4ad82fa5d426266c1d34e6b67869.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/.content-collections/cache/helppost/success_stories/db6a6948ee9a3bf05b759b0fd1eef313aeeb4ad82fa5d426266c1d34e6b67869.cache -------------------------------------------------------------------------------- /.content-collections/cache/helppost/what_is_dub/8ebe9a536d4b8cd51d4f056b3afebfe7675f52f71ecf8fab0d0ad15b44b41347.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/.content-collections/cache/helppost/what_is_dub/8ebe9a536d4b8cd51d4f056b3afebfe7675f52f71ecf8fab0d0ad15b44b41347.cache -------------------------------------------------------------------------------- /.content-collections/cache/mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/.content-collections/cache/mapping.json -------------------------------------------------------------------------------- /.content-collections/generated/allBlogPosts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/.content-collections/generated/allBlogPosts.js -------------------------------------------------------------------------------- /.content-collections/generated/allChangelogPosts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/.content-collections/generated/allChangelogPosts.js -------------------------------------------------------------------------------- /.content-collections/generated/allCustomersPosts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/.content-collections/generated/allCustomersPosts.js -------------------------------------------------------------------------------- /.content-collections/generated/allHelpPosts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/.content-collections/generated/allHelpPosts.js -------------------------------------------------------------------------------- /.content-collections/generated/allIntegrationsPosts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/.content-collections/generated/allIntegrationsPosts.js -------------------------------------------------------------------------------- /.content-collections/generated/allLegalPosts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/.content-collections/generated/allLegalPosts.js -------------------------------------------------------------------------------- /.content-collections/generated/allMarketReports.js: -------------------------------------------------------------------------------- 1 | 2 | export default [] -------------------------------------------------------------------------------- /.content-collections/generated/allPropertyPosts.js: -------------------------------------------------------------------------------- 1 | 2 | export default [] -------------------------------------------------------------------------------- /.content-collections/generated/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/.content-collections/generated/index.d.ts -------------------------------------------------------------------------------- /.content-collections/generated/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/.content-collections/generated/index.js -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/README.md -------------------------------------------------------------------------------- /content-collections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/content-collections.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/DatabaseLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/public/DatabaseLogo.tsx -------------------------------------------------------------------------------- /public/Propdock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/public/Propdock.svg -------------------------------------------------------------------------------- /public/_static/clients/corponor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/public/_static/clients/corponor.svg -------------------------------------------------------------------------------- /public/_static/integrasjoner/brreg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/public/_static/integrasjoner/brreg.svg -------------------------------------------------------------------------------- /public/_static/integrasjoner/fiken.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/public/_static/integrasjoner/fiken.svg -------------------------------------------------------------------------------- /public/_static/integrasjoner/kartverket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/public/_static/integrasjoner/kartverket.svg -------------------------------------------------------------------------------- /public/_static/integrasjoner/poweroffice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/public/_static/integrasjoner/poweroffice.svg -------------------------------------------------------------------------------- /public/_static/integrasjoner/propcloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/public/_static/integrasjoner/propcloud.svg -------------------------------------------------------------------------------- /public/_static/integrasjoner/propely.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/public/_static/integrasjoner/propely.svg -------------------------------------------------------------------------------- /public/_static/integrasjoner/signicat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/public/_static/integrasjoner/signicat.svg -------------------------------------------------------------------------------- /public/_static/integrasjoner/tripletex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/public/_static/integrasjoner/tripletex.svg -------------------------------------------------------------------------------- /public/_static/integrasjoner/visma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/public/_static/integrasjoner/visma.svg -------------------------------------------------------------------------------- /public/blocks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/public/blocks.svg -------------------------------------------------------------------------------- /public/changelog/v316.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/public/changelog/v316.webp -------------------------------------------------------------------------------- /public/changelog/v317.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/public/changelog/v317.webp -------------------------------------------------------------------------------- /public/fonts/NanumPenScript.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/public/fonts/NanumPenScript.woff2 -------------------------------------------------------------------------------- /public/images/break.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/public/images/break.webp -------------------------------------------------------------------------------- /public/images/cool.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/public/images/cool.webp -------------------------------------------------------------------------------- /public/images/founders.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/public/images/founders.webp -------------------------------------------------------------------------------- /public/images/hero-dark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/public/images/hero-dark.webp -------------------------------------------------------------------------------- /public/images/hero-light.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/public/images/hero-light.webp -------------------------------------------------------------------------------- /public/images/home.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/public/images/home.webp -------------------------------------------------------------------------------- /public/images/release.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/public/images/release.webp -------------------------------------------------------------------------------- /public/images/testimonial.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/public/images/testimonial.webp -------------------------------------------------------------------------------- /public/images/working.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/public/images/working.webp -------------------------------------------------------------------------------- /public/images/workplace.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/public/images/workplace.webp -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/public/opengraph-image.png -------------------------------------------------------------------------------- /src/app/(blog)/blog/(index)/category/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/(blog)/blog/(index)/category/[slug]/page.tsx -------------------------------------------------------------------------------- /src/app/(blog)/blog/(index)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/(blog)/blog/(index)/layout.tsx -------------------------------------------------------------------------------- /src/app/(blog)/blog/(index)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/(blog)/blog/(index)/page.tsx -------------------------------------------------------------------------------- /src/app/(blog)/blog/(post)/[slug]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/(blog)/blog/(post)/[slug]/layout.tsx -------------------------------------------------------------------------------- /src/app/(blog)/blog/(post)/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/(blog)/blog/(post)/[slug]/page.tsx -------------------------------------------------------------------------------- /src/app/(help)/help/article/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/(help)/help/article/[slug]/page.tsx -------------------------------------------------------------------------------- /src/app/(help)/help/category/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/(help)/help/category/[slug]/page.tsx -------------------------------------------------------------------------------- /src/app/(help)/help/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/(help)/help/layout.tsx -------------------------------------------------------------------------------- /src/app/(help)/help/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/(help)/help/not-found.tsx -------------------------------------------------------------------------------- /src/app/(help)/help/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/(help)/help/page.tsx -------------------------------------------------------------------------------- /src/app/(integrasjoner)/integrasjoner/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/(integrasjoner)/integrasjoner/[slug]/page.tsx -------------------------------------------------------------------------------- /src/app/(integrasjoner)/integrasjoner/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/(integrasjoner)/integrasjoner/layout.tsx -------------------------------------------------------------------------------- /src/app/(integrasjoner)/integrasjoner/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/(integrasjoner)/integrasjoner/page.tsx -------------------------------------------------------------------------------- /src/app/actions/investor/set-view-count.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/actions/investor/set-view-count.ts -------------------------------------------------------------------------------- /src/app/actions/onboarding/onboarding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/actions/onboarding/onboarding.ts -------------------------------------------------------------------------------- /src/app/actions/onboarding/search-organization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/actions/onboarding/search-organization.ts -------------------------------------------------------------------------------- /src/app/api/og/help/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/api/og/help/route.tsx -------------------------------------------------------------------------------- /src/app/early-access/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/early-access/page.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/investor/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/investor/page.tsx -------------------------------------------------------------------------------- /src/app/kontakt/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/kontakt/page.tsx -------------------------------------------------------------------------------- /src/app/kunder/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/kunder/[slug]/page.tsx -------------------------------------------------------------------------------- /src/app/kunder/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/kunder/layout.tsx -------------------------------------------------------------------------------- /src/app/kunder/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/kunder/page.tsx -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/markedsinnsikt/kart/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/markedsinnsikt/kart/page.tsx -------------------------------------------------------------------------------- /src/app/markedsinnsikt/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/markedsinnsikt/layout.tsx -------------------------------------------------------------------------------- /src/app/markedsinnsikt/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/markedsinnsikt/page.tsx -------------------------------------------------------------------------------- /src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/not-found.tsx -------------------------------------------------------------------------------- /src/app/om-oss/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/om-oss/layout.tsx -------------------------------------------------------------------------------- /src/app/om-oss/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/om-oss/page.tsx -------------------------------------------------------------------------------- /src/app/onboarding/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/onboarding/layout.tsx -------------------------------------------------------------------------------- /src/app/onboarding/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/onboarding/page.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/pricing/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/pricing/layout.tsx -------------------------------------------------------------------------------- /src/app/pricing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/pricing/page.tsx -------------------------------------------------------------------------------- /src/app/propdock/dashboard/map/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/propdock/dashboard/map/page.tsx -------------------------------------------------------------------------------- /src/app/propdock/eiendom/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/propdock/eiendom/page.tsx -------------------------------------------------------------------------------- /src/app/propdock/exit-strategi/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/propdock/exit-strategi/page.tsx -------------------------------------------------------------------------------- /src/app/propdock/finansiering/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/propdock/finansiering/page.tsx -------------------------------------------------------------------------------- /src/app/propdock/leietakere/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/propdock/leietakere/page.tsx -------------------------------------------------------------------------------- /src/app/propdock/marked/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/propdock/marked/page.tsx -------------------------------------------------------------------------------- /src/app/propdock/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/propdock/page.tsx -------------------------------------------------------------------------------- /src/app/propdock/regnskap/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/propdock/regnskap/page.tsx -------------------------------------------------------------------------------- /src/app/propdock/selskap/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/propdock/selskap/page.tsx -------------------------------------------------------------------------------- /src/app/propdock/simulering/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/propdock/simulering/page.tsx -------------------------------------------------------------------------------- /src/app/propdock/verdivurdering/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/propdock/verdivurdering/page.tsx -------------------------------------------------------------------------------- /src/app/robots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/robots.ts -------------------------------------------------------------------------------- /src/app/siteConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/siteConfig.ts -------------------------------------------------------------------------------- /src/app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/sitemap.ts -------------------------------------------------------------------------------- /src/app/tjenester/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/tjenester/page.tsx -------------------------------------------------------------------------------- /src/app/tjenester/verdsettelse/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/app/tjenester/verdsettelse/page.tsx -------------------------------------------------------------------------------- /src/components/Accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/Accordion.tsx -------------------------------------------------------------------------------- /src/components/AreaChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/AreaChart.tsx -------------------------------------------------------------------------------- /src/components/Arrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/Arrow.tsx -------------------------------------------------------------------------------- /src/components/Badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/Badge.tsx -------------------------------------------------------------------------------- /src/components/BarChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/BarChart.tsx -------------------------------------------------------------------------------- /src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/Button.tsx -------------------------------------------------------------------------------- /src/components/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/Card.tsx -------------------------------------------------------------------------------- /src/components/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/Checkbox.tsx -------------------------------------------------------------------------------- /src/components/Code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/Code.tsx -------------------------------------------------------------------------------- /src/components/ComboChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ComboChart.tsx -------------------------------------------------------------------------------- /src/components/CopyToClipboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/CopyToClipboard.tsx -------------------------------------------------------------------------------- /src/components/Drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/Drawer.tsx -------------------------------------------------------------------------------- /src/components/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/Dropdown.tsx -------------------------------------------------------------------------------- /src/components/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/Input.tsx -------------------------------------------------------------------------------- /src/components/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/Label.tsx -------------------------------------------------------------------------------- /src/components/LineChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/LineChart.tsx -------------------------------------------------------------------------------- /src/components/Popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/Popover.tsx -------------------------------------------------------------------------------- /src/components/RadioCardGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/RadioCardGroup.tsx -------------------------------------------------------------------------------- /src/components/RadioGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/RadioGroup.tsx -------------------------------------------------------------------------------- /src/components/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/Select.tsx -------------------------------------------------------------------------------- /src/components/Slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/Slider.tsx -------------------------------------------------------------------------------- /src/components/Switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/Switch.tsx -------------------------------------------------------------------------------- /src/components/TabNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/TabNavigation.tsx -------------------------------------------------------------------------------- /src/components/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/Table.tsx -------------------------------------------------------------------------------- /src/components/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/Tabs.tsx -------------------------------------------------------------------------------- /src/components/ThemeSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ThemeSwitch.tsx -------------------------------------------------------------------------------- /src/components/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/Tooltip.tsx -------------------------------------------------------------------------------- /src/components/blog/author.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/blog/author.tsx -------------------------------------------------------------------------------- /src/components/blog/blog-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/blog/blog-card.tsx -------------------------------------------------------------------------------- /src/components/blog/blog-layout-hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/blog/blog-layout-hero.tsx -------------------------------------------------------------------------------- /src/components/blog/category-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/blog/category-card.tsx -------------------------------------------------------------------------------- /src/components/blog/cmdk.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/blog/cmdk.tsx -------------------------------------------------------------------------------- /src/components/blog/copy-box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/blog/copy-box.tsx -------------------------------------------------------------------------------- /src/components/blog/customers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/blog/customers.tsx -------------------------------------------------------------------------------- /src/components/blog/feedback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/blog/feedback.tsx -------------------------------------------------------------------------------- /src/components/blog/help-article-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/blog/help-article-link.tsx -------------------------------------------------------------------------------- /src/components/blog/icons/expanding-arrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/blog/icons/expanding-arrow.tsx -------------------------------------------------------------------------------- /src/components/blog/icons/magic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/blog/icons/magic.tsx -------------------------------------------------------------------------------- /src/components/blog/integrations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/blog/integrations.tsx -------------------------------------------------------------------------------- /src/components/blog/legal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/blog/legal.tsx -------------------------------------------------------------------------------- /src/components/blog/logos.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/blog/logos.tsx -------------------------------------------------------------------------------- /src/components/blog/max-width-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/blog/max-width-wrapper.tsx -------------------------------------------------------------------------------- /src/components/blog/mdx.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/blog/mdx.tsx -------------------------------------------------------------------------------- /src/components/blog/modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/blog/modal.tsx -------------------------------------------------------------------------------- /src/components/blog/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/blog/popover.tsx -------------------------------------------------------------------------------- /src/components/blog/search-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/blog/search-button.tsx -------------------------------------------------------------------------------- /src/components/blog/table-of-contents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/blog/table-of-contents.tsx -------------------------------------------------------------------------------- /src/components/blog/testimonials-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/blog/testimonials-mobile.tsx -------------------------------------------------------------------------------- /src/components/blog/testimonials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/blog/testimonials.tsx -------------------------------------------------------------------------------- /src/components/blog/zoom-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/blog/zoom-image.tsx -------------------------------------------------------------------------------- /src/components/cal-embed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/cal-embed.tsx -------------------------------------------------------------------------------- /src/components/data/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/data/data.ts -------------------------------------------------------------------------------- /src/components/data/generateData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/data/generateData.js -------------------------------------------------------------------------------- /src/components/data/overview-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/data/overview-data.ts -------------------------------------------------------------------------------- /src/components/data/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/data/schema.ts -------------------------------------------------------------------------------- /src/components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/footer.tsx -------------------------------------------------------------------------------- /src/components/forms/ContactForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/forms/ContactForm.tsx -------------------------------------------------------------------------------- /src/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/header.tsx -------------------------------------------------------------------------------- /src/components/investor/carousel-toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/investor/carousel-toolbar.tsx -------------------------------------------------------------------------------- /src/components/investor/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/investor/carousel.tsx -------------------------------------------------------------------------------- /src/components/investor/copy-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/investor/copy-input.tsx -------------------------------------------------------------------------------- /src/components/investor/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/investor/icons.tsx -------------------------------------------------------------------------------- /src/components/investor/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/investor/overview.png -------------------------------------------------------------------------------- /src/components/investor/pitch-carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/investor/pitch-carousel.tsx -------------------------------------------------------------------------------- /src/components/investor/reciept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/investor/reciept.png -------------------------------------------------------------------------------- /src/components/investor/section-book.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/investor/section-book.tsx -------------------------------------------------------------------------------- /src/components/investor/section-business-model.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/investor/section-business-model.tsx -------------------------------------------------------------------------------- /src/components/investor/section-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/investor/section-demo.tsx -------------------------------------------------------------------------------- /src/components/investor/section-expansion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/investor/section-expansion.tsx -------------------------------------------------------------------------------- /src/components/investor/section-future-growth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/investor/section-future-growth.tsx -------------------------------------------------------------------------------- /src/components/investor/section-growth-strategy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/investor/section-growth-strategy.tsx -------------------------------------------------------------------------------- /src/components/investor/section-market.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/investor/section-market.tsx -------------------------------------------------------------------------------- /src/components/investor/section-problem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/investor/section-problem.tsx -------------------------------------------------------------------------------- /src/components/investor/section-solution.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/investor/section-solution.tsx -------------------------------------------------------------------------------- /src/components/investor/section-start.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/investor/section-start.tsx -------------------------------------------------------------------------------- /src/components/investor/section-team.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/investor/section-team.tsx -------------------------------------------------------------------------------- /src/components/investor/section-traction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/investor/section-traction.tsx -------------------------------------------------------------------------------- /src/components/investor/ui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/investor/ui.tsx -------------------------------------------------------------------------------- /src/components/markedsinnsikt/Chart-main-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/markedsinnsikt/Chart-main-page.tsx -------------------------------------------------------------------------------- /src/components/markedsinnsikt/MarkedsKart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/markedsinnsikt/MarkedsKart.tsx -------------------------------------------------------------------------------- /src/components/markedsinnsikt/PageShell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/markedsinnsikt/PageShell.tsx -------------------------------------------------------------------------------- /src/components/markedsinnsikt/SideNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/markedsinnsikt/SideNav.tsx -------------------------------------------------------------------------------- /src/components/markedsinnsikt/Top-kpi-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/markedsinnsikt/Top-kpi-card.tsx -------------------------------------------------------------------------------- /src/components/mdx.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/mdx.tsx -------------------------------------------------------------------------------- /src/components/propdock/DcfChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/propdock/DcfChart.tsx -------------------------------------------------------------------------------- /src/components/propdock/FeatureComparison.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/propdock/FeatureComparison.tsx -------------------------------------------------------------------------------- /src/components/propdock/FeatureShowcase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/propdock/FeatureShowcase.tsx -------------------------------------------------------------------------------- /src/components/propdock/Navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/propdock/Navigation.tsx -------------------------------------------------------------------------------- /src/components/propdock/ProcessFlow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/propdock/ProcessFlow.tsx -------------------------------------------------------------------------------- /src/components/propdock/ProgressCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/propdock/ProgressCircle.tsx -------------------------------------------------------------------------------- /src/components/propdock/PropertyMapOverview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/propdock/PropertyMapOverview.tsx -------------------------------------------------------------------------------- /src/components/propdock/TablePageNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/propdock/TablePageNavigation.tsx -------------------------------------------------------------------------------- /src/components/propdock/YieldLineChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/propdock/YieldLineChart.tsx -------------------------------------------------------------------------------- /src/components/propdock/eiendom/PropertyMap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/propdock/eiendom/PropertyMap.tsx -------------------------------------------------------------------------------- /src/components/propdock/exit-strategi/AssumableFinancingCalculator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/propdock/exit-strategi/AssumableFinancingCalculator.tsx -------------------------------------------------------------------------------- /src/components/propdock/exit-strategi/ExitStrategyPlanning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/propdock/exit-strategi/ExitStrategyPlanning.tsx -------------------------------------------------------------------------------- /src/components/propdock/exit-strategi/FixedVsVariableRateChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/propdock/exit-strategi/FixedVsVariableRateChart.tsx -------------------------------------------------------------------------------- /src/components/propdock/exit-strategi/LoanAmortizationChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/propdock/exit-strategi/LoanAmortizationChart.tsx -------------------------------------------------------------------------------- /src/components/propdock/exit-strategi/OptimalHoldPeriodCalculator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/propdock/exit-strategi/OptimalHoldPeriodCalculator.tsx -------------------------------------------------------------------------------- /src/components/propdock/exit-strategi/PrepaymentAnalysisCalculator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/propdock/exit-strategi/PrepaymentAnalysisCalculator.tsx -------------------------------------------------------------------------------- /src/components/propdock/finansiering/DebtStructuring.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/propdock/finansiering/DebtStructuring.tsx -------------------------------------------------------------------------------- /src/components/propdock/leietakere/TableLeietakere.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/propdock/leietakere/TableLeietakere.tsx -------------------------------------------------------------------------------- /src/components/propdock/marked/DemographicAnalysis.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/propdock/marked/DemographicAnalysis.tsx -------------------------------------------------------------------------------- /src/components/propdock/marked/MarketSentiment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/propdock/marked/MarketSentiment.tsx -------------------------------------------------------------------------------- /src/components/propdock/marked/MarketStatistics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/propdock/marked/MarketStatistics.tsx -------------------------------------------------------------------------------- /src/components/propdock/regnskap/ChartMainAccouting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/propdock/regnskap/ChartMainAccouting.tsx -------------------------------------------------------------------------------- /src/components/propdock/regnskap/KpiAccountCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/propdock/regnskap/KpiAccountCards.tsx -------------------------------------------------------------------------------- /src/components/propdock/regnskap/RegnskapsAnalyse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/propdock/regnskap/RegnskapsAnalyse.tsx -------------------------------------------------------------------------------- /src/components/propdock/regnskap/TableAccounting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/propdock/regnskap/TableAccounting.tsx -------------------------------------------------------------------------------- /src/components/propdock/sampleProperties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/propdock/sampleProperties.ts -------------------------------------------------------------------------------- /src/components/propdock/simulering/InvestmentParameters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/propdock/simulering/InvestmentParameters.tsx -------------------------------------------------------------------------------- /src/components/propdock/simulering/KeyMetrics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/propdock/simulering/KeyMetrics.tsx -------------------------------------------------------------------------------- /src/components/propdock/simulering/MarketAnalysis.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/propdock/simulering/MarketAnalysis.tsx -------------------------------------------------------------------------------- /src/components/propdock/simulering/ScenarioComparison.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/propdock/simulering/ScenarioComparison.tsx -------------------------------------------------------------------------------- /src/components/propdock/simulering/ScenarioManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/propdock/simulering/ScenarioManager.tsx -------------------------------------------------------------------------------- /src/components/propdock/workflow/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/propdock/workflow/generator.ts -------------------------------------------------------------------------------- /src/components/propdock/workflow/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/propdock/workflow/schema.ts -------------------------------------------------------------------------------- /src/components/propdock/workflow/workflow-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/propdock/workflow/workflow-data.ts -------------------------------------------------------------------------------- /src/components/ui/Analycits-dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/Analycits-dashboard.tsx -------------------------------------------------------------------------------- /src/components/ui/Animated-Grid-Background.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/Animated-Grid-Background.tsx -------------------------------------------------------------------------------- /src/components/ui/AnimatedCTA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/AnimatedCTA.tsx -------------------------------------------------------------------------------- /src/components/ui/ArrowAnimated.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/ArrowAnimated.tsx -------------------------------------------------------------------------------- /src/components/ui/Benefits.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/Benefits.tsx -------------------------------------------------------------------------------- /src/components/ui/CodeExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/CodeExample.tsx -------------------------------------------------------------------------------- /src/components/ui/CodeExampleTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/CodeExampleTabs.tsx -------------------------------------------------------------------------------- /src/components/ui/CommandBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/CommandBar.tsx -------------------------------------------------------------------------------- /src/components/ui/Cta-middle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/Cta-middle.tsx -------------------------------------------------------------------------------- /src/components/ui/Cta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/Cta.tsx -------------------------------------------------------------------------------- /src/components/ui/Display-chart-landing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/Display-chart-landing.tsx -------------------------------------------------------------------------------- /src/components/ui/DisplayCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/DisplayCards.tsx -------------------------------------------------------------------------------- /src/components/ui/Divider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/Divider.tsx -------------------------------------------------------------------------------- /src/components/ui/EarlyAccessCta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/EarlyAccessCta.tsx -------------------------------------------------------------------------------- /src/components/ui/Fade.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/Fade.tsx -------------------------------------------------------------------------------- /src/components/ui/Faqs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/Faqs.tsx -------------------------------------------------------------------------------- /src/components/ui/FeatureDivider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/FeatureDivider.tsx -------------------------------------------------------------------------------- /src/components/ui/Features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/Features.tsx -------------------------------------------------------------------------------- /src/components/ui/Features2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/Features2.tsx -------------------------------------------------------------------------------- /src/components/ui/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/Footer.tsx -------------------------------------------------------------------------------- /src/components/ui/GlobalDatabase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/GlobalDatabase.tsx -------------------------------------------------------------------------------- /src/components/ui/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/Hero.tsx -------------------------------------------------------------------------------- /src/components/ui/Hero2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/Hero2.tsx -------------------------------------------------------------------------------- /src/components/ui/HeroBackground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/HeroBackground.tsx -------------------------------------------------------------------------------- /src/components/ui/HeroImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/HeroImage.tsx -------------------------------------------------------------------------------- /src/components/ui/InstaxImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/InstaxImage.tsx -------------------------------------------------------------------------------- /src/components/ui/LineChartTjeneste.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/LineChartTjeneste.tsx -------------------------------------------------------------------------------- /src/components/ui/LogoCloud.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/LogoCloud.tsx -------------------------------------------------------------------------------- /src/components/ui/Logos.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/Logos.tsx -------------------------------------------------------------------------------- /src/components/ui/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/Navbar.tsx -------------------------------------------------------------------------------- /src/components/ui/Searchbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/Searchbar.tsx -------------------------------------------------------------------------------- /src/components/ui/SideNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/SideNav.tsx -------------------------------------------------------------------------------- /src/components/ui/TeamGallery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/TeamGallery.tsx -------------------------------------------------------------------------------- /src/components/ui/Testimonial.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/Testimonial.tsx -------------------------------------------------------------------------------- /src/components/ui/ThemedImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/ThemedImage.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/data-table/DataTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/data-table/DataTable.tsx -------------------------------------------------------------------------------- /src/components/ui/data-table/DataTableBulkEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/data-table/DataTableBulkEditor.tsx -------------------------------------------------------------------------------- /src/components/ui/data-table/DataTableColumnHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/data-table/DataTableColumnHeader.tsx -------------------------------------------------------------------------------- /src/components/ui/data-table/DataTableFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/data-table/DataTableFilter.tsx -------------------------------------------------------------------------------- /src/components/ui/data-table/DataTableFilterbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/data-table/DataTableFilterbar.tsx -------------------------------------------------------------------------------- /src/components/ui/data-table/DataTablePagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/data-table/DataTablePagination.tsx -------------------------------------------------------------------------------- /src/components/ui/data-table/DataTableRowActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/data-table/DataTableRowActions.tsx -------------------------------------------------------------------------------- /src/components/ui/data-table/DataTableViewOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/data-table/DataTableViewOptions.tsx -------------------------------------------------------------------------------- /src/components/ui/data-table/PropertyComparisonDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/data-table/PropertyComparisonDrawer.tsx -------------------------------------------------------------------------------- /src/components/ui/data-table/PropertyDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/data-table/PropertyDrawer.tsx -------------------------------------------------------------------------------- /src/components/ui/data-table/TanstackTable.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/data-table/TanstackTable.d.ts -------------------------------------------------------------------------------- /src/components/ui/data-table/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/components/ui/data-table/columns.tsx -------------------------------------------------------------------------------- /src/content/blog/fremtiden-for-naringseiendom.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/content/blog/fremtiden-for-naringseiendom.mdx -------------------------------------------------------------------------------- /src/content/blog/introduserer-propdock.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/content/blog/introduserer-propdock.mdx -------------------------------------------------------------------------------- /src/content/blog/kunnskapsbase.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/content/blog/kunnskapsbase.mdx -------------------------------------------------------------------------------- /src/content/blog/slik-analyserer-du-eiendomsmarkedet.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/content/blog/slik-analyserer-du-eiendomsmarkedet.mdx -------------------------------------------------------------------------------- /src/content/changelog/tastatursnarveier.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/content/changelog/tastatursnarveier.mdx -------------------------------------------------------------------------------- /src/content/customers/corponor.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/content/customers/corponor.mdx -------------------------------------------------------------------------------- /src/content/docs/sample.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/content/docs/sample.mdx -------------------------------------------------------------------------------- /src/content/help/diskontert-kontantstrom.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/content/help/diskontert-kontantstrom.mdx -------------------------------------------------------------------------------- /src/content/help/driftskostnader.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/content/help/driftskostnader.mdx -------------------------------------------------------------------------------- /src/content/help/felleskostnader.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/content/help/felleskostnader.mdx -------------------------------------------------------------------------------- /src/content/help/hva-er-propdock.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/content/help/hva-er-propdock.mdx -------------------------------------------------------------------------------- /src/content/help/hva-er-yield.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/content/help/hva-er-yield.mdx -------------------------------------------------------------------------------- /src/content/help/kontantstromsanalyse.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/content/help/kontantstromsanalyse.mdx -------------------------------------------------------------------------------- /src/content/help/markedsleie-og-leieniva.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/content/help/markedsleie-og-leieniva.mdx -------------------------------------------------------------------------------- /src/content/help/netto-leieinntekter.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/content/help/netto-leieinntekter.mdx -------------------------------------------------------------------------------- /src/content/help/sensitivitetsanalyse.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/content/help/sensitivitetsanalyse.mdx -------------------------------------------------------------------------------- /src/content/help/tjene-mer-pa-naringseiendom.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/content/help/tjene-mer-pa-naringseiendom.mdx -------------------------------------------------------------------------------- /src/content/help/verdivurdering-av-naringseiendom.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/content/help/verdivurdering-av-naringseiendom.mdx -------------------------------------------------------------------------------- /src/content/integrations/brreg.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/content/integrations/brreg.mdx -------------------------------------------------------------------------------- /src/content/integrations/kartverket.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/content/integrations/kartverket.mdx -------------------------------------------------------------------------------- /src/content/legal/privacy.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/content/legal/privacy.mdx -------------------------------------------------------------------------------- /src/content/legal/terms.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/content/legal/terms.mdx -------------------------------------------------------------------------------- /src/lib/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/lib/actions.ts -------------------------------------------------------------------------------- /src/lib/blog/blur-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/lib/blog/blur-image.tsx -------------------------------------------------------------------------------- /src/lib/blog/content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/lib/blog/content.tsx -------------------------------------------------------------------------------- /src/lib/blog/images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/lib/blog/images.ts -------------------------------------------------------------------------------- /src/lib/blog/use-current-anchor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/lib/blog/use-current-anchor.ts -------------------------------------------------------------------------------- /src/lib/chartUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/lib/chartUtils.ts -------------------------------------------------------------------------------- /src/lib/coordinateUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/lib/coordinateUtils.ts -------------------------------------------------------------------------------- /src/lib/formatters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/lib/formatters.ts -------------------------------------------------------------------------------- /src/lib/hooks/use-debounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/lib/hooks/use-debounce.ts -------------------------------------------------------------------------------- /src/lib/hooks/use-media-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/lib/hooks/use-media-query.ts -------------------------------------------------------------------------------- /src/lib/hooks/use-window-size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/lib/hooks/use-window-size.ts -------------------------------------------------------------------------------- /src/lib/use-scroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/lib/use-scroll.ts -------------------------------------------------------------------------------- /src/lib/useOnWindowResize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/lib/useOnWindowResize.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/middleware.ts -------------------------------------------------------------------------------- /src/types/simulation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/src/types/simulation.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/propdock/HEAD/tsconfig.json --------------------------------------------------------------------------------