├── .DS_Store ├── .gitignore ├── README.md ├── __pycache__ ├── analysis_worflow.cpython-312.pyc └── lambda_function.cpython-312.pyc ├── backend ├── .DS_Store ├── .env.example ├── .gitignore ├── README.md ├── api │ ├── .DS_Store │ ├── __init__.py │ ├── routes │ │ ├── __init__.py │ │ ├── analysis.py │ │ ├── embedding.py │ │ ├── index.py │ │ ├── search.py │ │ ├── video.py │ │ └── weaviate.py │ └── utils │ │ ├── __init__.py │ │ ├── csv_utils.py │ │ ├── generate_analysis.py │ │ ├── s3_utils.py │ │ ├── twelvelabs_api.py │ │ └── weaviate_api.py ├── app.py ├── config │ ├── __init__.py │ ├── prompt.txt │ └── settings.py ├── requirements.txt ├── scripts │ └── batch_embedding.py ├── src │ ├── NatureFootage_Workflow.png │ └── banner.png └── tracking │ └── nature_footage.log └── www.nature-footage.com ├── .gitignore ├── README.md ├── app ├── api │ ├── similar-videos │ │ └── [id] │ │ │ └── route.ts │ └── video │ │ └── [filename] │ │ └── route.ts ├── detail │ └── [id] │ │ └── page.tsx ├── globals.css ├── layout.tsx ├── loading.tsx ├── page.tsx └── search │ ├── loading.tsx │ └── page.tsx ├── components.json ├── components ├── api-key-checker.tsx ├── category-buttons.tsx ├── powered-by-text.tsx ├── related-searches.tsx ├── search-bar.tsx ├── theme-provider.tsx ├── ui │ ├── accordion.tsx │ ├── alert-dialog.tsx │ ├── alert.tsx │ ├── aspect-ratio.tsx │ ├── avatar.tsx │ ├── badge.tsx │ ├── breadcrumb.tsx │ ├── button.tsx │ ├── calendar.tsx │ ├── card.tsx │ ├── carousel.tsx │ ├── chart.tsx │ ├── checkbox.tsx │ ├── collapsible.tsx │ ├── command.tsx │ ├── context-menu.tsx │ ├── dialog.tsx │ ├── drawer.tsx │ ├── dropdown-menu.tsx │ ├── form.tsx │ ├── hover-card.tsx │ ├── input-otp.tsx │ ├── input.tsx │ ├── label.tsx │ ├── menubar.tsx │ ├── navigation-menu.tsx │ ├── pagination.tsx │ ├── popover.tsx │ ├── progress.tsx │ ├── radio-group.tsx │ ├── resizable.tsx │ ├── scroll-area.tsx │ ├── select.tsx │ ├── separator.tsx │ ├── sheet.tsx │ ├── sidebar.tsx │ ├── skeleton.tsx │ ├── slider.tsx │ ├── sonner.tsx │ ├── switch.tsx │ ├── table.tsx │ ├── tabs.tsx │ ├── textarea.tsx │ ├── toast.tsx │ ├── toaster.tsx │ ├── toggle-group.tsx │ ├── toggle.tsx │ ├── tooltip.tsx │ ├── use-mobile.tsx │ └── use-toast.ts ├── video-grid.tsx ├── video-metadata.tsx └── video-results.tsx ├── config └── api-config.ts ├── hooks ├── use-mobile.tsx └── use-toast.ts ├── lib └── utils.ts ├── next-env.d.ts ├── next.config.mjs ├── package-lock.json ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── public ├── abstract-geometric-shapes.png ├── arch1.jpg ├── arctic-panorama.png ├── desert-canyon-vista.png ├── desert-twilight-dunes.png ├── emerald-canopy.png ├── flowing-white-structure.png ├── forest-floor-detail.png ├── geometric-glass-facade.png ├── geometric-skyline.png ├── golden-wheat-sunset.png ├── hibiscus.png ├── logo-bw.svg ├── logo.jpg ├── logo.svg ├── lush-forest-stream.png ├── misty-mountain-forest.png ├── monkey.png ├── monochrome-spiral.png ├── nature-images │ ├── desert-canyon.png │ ├── forest-path.png │ ├── island-aerial.png │ ├── mountain-lake.png │ ├── ocean-waves.png │ ├── pine-forest.png │ ├── spiral-staircase.png │ ├── stormy-ocean.png │ ├── sunset-field.png │ └── yellow-field.png ├── octopus.png ├── placeholder-logo.png ├── placeholder-logo.svg ├── placeholder-user.jpg ├── placeholder.jpg ├── placeholder.svg ├── savanna-gathering.png ├── sleek-glass-tower.png ├── sun-dappled-trail.png ├── tempestuous-amethyst.png ├── upward-glass-tower.png ├── urban-grid.png └── vibrant-coral-city.png ├── styles └── globals.css ├── tailwind.config.ts ├── tsconfig.json └── types ├── hls.d.ts └── search.ts /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/analysis_worflow.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/__pycache__/analysis_worflow.cpython-312.pyc -------------------------------------------------------------------------------- /__pycache__/lambda_function.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/__pycache__/lambda_function.cpython-312.pyc -------------------------------------------------------------------------------- /backend/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/backend/.DS_Store -------------------------------------------------------------------------------- /backend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/backend/.env.example -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/api/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/backend/api/.DS_Store -------------------------------------------------------------------------------- /backend/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/api/routes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/api/routes/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/backend/api/routes/analysis.py -------------------------------------------------------------------------------- /backend/api/routes/embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/backend/api/routes/embedding.py -------------------------------------------------------------------------------- /backend/api/routes/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/backend/api/routes/index.py -------------------------------------------------------------------------------- /backend/api/routes/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/backend/api/routes/search.py -------------------------------------------------------------------------------- /backend/api/routes/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/backend/api/routes/video.py -------------------------------------------------------------------------------- /backend/api/routes/weaviate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/backend/api/routes/weaviate.py -------------------------------------------------------------------------------- /backend/api/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/api/utils/csv_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/backend/api/utils/csv_utils.py -------------------------------------------------------------------------------- /backend/api/utils/generate_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/backend/api/utils/generate_analysis.py -------------------------------------------------------------------------------- /backend/api/utils/s3_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/backend/api/utils/s3_utils.py -------------------------------------------------------------------------------- /backend/api/utils/twelvelabs_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/backend/api/utils/twelvelabs_api.py -------------------------------------------------------------------------------- /backend/api/utils/weaviate_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/backend/api/utils/weaviate_api.py -------------------------------------------------------------------------------- /backend/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/backend/app.py -------------------------------------------------------------------------------- /backend/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/config/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/backend/config/prompt.txt -------------------------------------------------------------------------------- /backend/config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/backend/config/settings.py -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /backend/scripts/batch_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/backend/scripts/batch_embedding.py -------------------------------------------------------------------------------- /backend/src/NatureFootage_Workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/backend/src/NatureFootage_Workflow.png -------------------------------------------------------------------------------- /backend/src/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/backend/src/banner.png -------------------------------------------------------------------------------- /backend/tracking/nature_footage.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www.nature-footage.com/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/.gitignore -------------------------------------------------------------------------------- /www.nature-footage.com/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www.nature-footage.com/app/api/similar-videos/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/app/api/similar-videos/[id]/route.ts -------------------------------------------------------------------------------- /www.nature-footage.com/app/api/video/[filename]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/app/api/video/[filename]/route.ts -------------------------------------------------------------------------------- /www.nature-footage.com/app/detail/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/app/detail/[id]/page.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/app/globals.css -------------------------------------------------------------------------------- /www.nature-footage.com/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/app/layout.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/app/loading.tsx: -------------------------------------------------------------------------------- 1 | export default function Loading() { 2 | return null 3 | } 4 | -------------------------------------------------------------------------------- /www.nature-footage.com/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/app/page.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/app/search/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/app/search/loading.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/app/search/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/app/search/page.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components.json -------------------------------------------------------------------------------- /www.nature-footage.com/components/api-key-checker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/api-key-checker.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/category-buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/category-buttons.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/powered-by-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/powered-by-text.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/related-searches.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/related-searches.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/search-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/search-bar.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/theme-provider.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/accordion.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/alert.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/avatar.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/badge.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/button.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/calendar.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/card.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/carousel.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/chart.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/command.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/dialog.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/drawer.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/form.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/input.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/label.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/menubar.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/pagination.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/popover.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/progress.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/resizable.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/select.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/separator.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/sheet.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/slider.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/sonner.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/switch.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/table.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/tabs.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/textarea.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/toast.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/toaster.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/toggle.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/use-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/use-mobile.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/ui/use-toast.ts -------------------------------------------------------------------------------- /www.nature-footage.com/components/video-grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/video-grid.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/video-metadata.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/video-metadata.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/components/video-results.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/components/video-results.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/config/api-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/config/api-config.ts -------------------------------------------------------------------------------- /www.nature-footage.com/hooks/use-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/hooks/use-mobile.tsx -------------------------------------------------------------------------------- /www.nature-footage.com/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/hooks/use-toast.ts -------------------------------------------------------------------------------- /www.nature-footage.com/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/lib/utils.ts -------------------------------------------------------------------------------- /www.nature-footage.com/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/next-env.d.ts -------------------------------------------------------------------------------- /www.nature-footage.com/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/next.config.mjs -------------------------------------------------------------------------------- /www.nature-footage.com/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/package-lock.json -------------------------------------------------------------------------------- /www.nature-footage.com/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/package.json -------------------------------------------------------------------------------- /www.nature-footage.com/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/pnpm-lock.yaml -------------------------------------------------------------------------------- /www.nature-footage.com/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/postcss.config.mjs -------------------------------------------------------------------------------- /www.nature-footage.com/public/abstract-geometric-shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/abstract-geometric-shapes.png -------------------------------------------------------------------------------- /www.nature-footage.com/public/arch1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/arch1.jpg -------------------------------------------------------------------------------- /www.nature-footage.com/public/arctic-panorama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/arctic-panorama.png -------------------------------------------------------------------------------- /www.nature-footage.com/public/desert-canyon-vista.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/desert-canyon-vista.png -------------------------------------------------------------------------------- /www.nature-footage.com/public/desert-twilight-dunes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/desert-twilight-dunes.png -------------------------------------------------------------------------------- /www.nature-footage.com/public/emerald-canopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/emerald-canopy.png -------------------------------------------------------------------------------- /www.nature-footage.com/public/flowing-white-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/flowing-white-structure.png -------------------------------------------------------------------------------- /www.nature-footage.com/public/forest-floor-detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/forest-floor-detail.png -------------------------------------------------------------------------------- /www.nature-footage.com/public/geometric-glass-facade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/geometric-glass-facade.png -------------------------------------------------------------------------------- /www.nature-footage.com/public/geometric-skyline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/geometric-skyline.png -------------------------------------------------------------------------------- /www.nature-footage.com/public/golden-wheat-sunset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/golden-wheat-sunset.png -------------------------------------------------------------------------------- /www.nature-footage.com/public/hibiscus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/hibiscus.png -------------------------------------------------------------------------------- /www.nature-footage.com/public/logo-bw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/logo-bw.svg -------------------------------------------------------------------------------- /www.nature-footage.com/public/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/logo.jpg -------------------------------------------------------------------------------- /www.nature-footage.com/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/logo.svg -------------------------------------------------------------------------------- /www.nature-footage.com/public/lush-forest-stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/lush-forest-stream.png -------------------------------------------------------------------------------- /www.nature-footage.com/public/misty-mountain-forest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/misty-mountain-forest.png -------------------------------------------------------------------------------- /www.nature-footage.com/public/monkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/monkey.png -------------------------------------------------------------------------------- /www.nature-footage.com/public/monochrome-spiral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/monochrome-spiral.png -------------------------------------------------------------------------------- /www.nature-footage.com/public/nature-images/desert-canyon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/nature-images/desert-canyon.png -------------------------------------------------------------------------------- /www.nature-footage.com/public/nature-images/forest-path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/nature-images/forest-path.png -------------------------------------------------------------------------------- /www.nature-footage.com/public/nature-images/island-aerial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/nature-images/island-aerial.png -------------------------------------------------------------------------------- /www.nature-footage.com/public/nature-images/mountain-lake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/nature-images/mountain-lake.png -------------------------------------------------------------------------------- /www.nature-footage.com/public/nature-images/ocean-waves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/nature-images/ocean-waves.png -------------------------------------------------------------------------------- /www.nature-footage.com/public/nature-images/pine-forest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/nature-images/pine-forest.png -------------------------------------------------------------------------------- /www.nature-footage.com/public/nature-images/spiral-staircase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/nature-images/spiral-staircase.png -------------------------------------------------------------------------------- /www.nature-footage.com/public/nature-images/stormy-ocean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/nature-images/stormy-ocean.png -------------------------------------------------------------------------------- /www.nature-footage.com/public/nature-images/sunset-field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/nature-images/sunset-field.png -------------------------------------------------------------------------------- /www.nature-footage.com/public/nature-images/yellow-field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/nature-images/yellow-field.png -------------------------------------------------------------------------------- /www.nature-footage.com/public/octopus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/octopus.png -------------------------------------------------------------------------------- /www.nature-footage.com/public/placeholder-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/placeholder-logo.png -------------------------------------------------------------------------------- /www.nature-footage.com/public/placeholder-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/placeholder-logo.svg -------------------------------------------------------------------------------- /www.nature-footage.com/public/placeholder-user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/placeholder-user.jpg -------------------------------------------------------------------------------- /www.nature-footage.com/public/placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/placeholder.jpg -------------------------------------------------------------------------------- /www.nature-footage.com/public/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/placeholder.svg -------------------------------------------------------------------------------- /www.nature-footage.com/public/savanna-gathering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/savanna-gathering.png -------------------------------------------------------------------------------- /www.nature-footage.com/public/sleek-glass-tower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/sleek-glass-tower.png -------------------------------------------------------------------------------- /www.nature-footage.com/public/sun-dappled-trail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/sun-dappled-trail.png -------------------------------------------------------------------------------- /www.nature-footage.com/public/tempestuous-amethyst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/tempestuous-amethyst.png -------------------------------------------------------------------------------- /www.nature-footage.com/public/upward-glass-tower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/upward-glass-tower.png -------------------------------------------------------------------------------- /www.nature-footage.com/public/urban-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/urban-grid.png -------------------------------------------------------------------------------- /www.nature-footage.com/public/vibrant-coral-city.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/public/vibrant-coral-city.png -------------------------------------------------------------------------------- /www.nature-footage.com/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/styles/globals.css -------------------------------------------------------------------------------- /www.nature-footage.com/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/tailwind.config.ts -------------------------------------------------------------------------------- /www.nature-footage.com/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/tsconfig.json -------------------------------------------------------------------------------- /www.nature-footage.com/types/hls.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/types/hls.d.ts -------------------------------------------------------------------------------- /www.nature-footage.com/types/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/TwelveLabs-Nature-Footage/HEAD/www.nature-footage.com/types/search.ts --------------------------------------------------------------------------------